View | Details | Raw Unified | Return to bug 5684
Collapse All | Expand All

(-)ruby/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
# $Id: Makefile,v 1.4 1997/12/01 08:09:37 vanilla Exp $
6
# $Id: Makefile,v 1.4 1997/12/01 08:09:37 vanilla Exp $
7
#
7
#
8
8
9
DISTNAME=	ruby-1.0-971125
9
DISTNAME=	ruby-1.0-971225
10
PKGNAME=	ruby-1.0
10
PKGNAME=	ruby-1.0
11
CATEGORIES=	lang
11
CATEGORIES=	lang
12
MASTER_SITES=	ftp://ftp.netlab.co.jp/pub/lang/ruby/
12
MASTER_SITES=	ftp://ftp.netlab.co.jp/pub/lang/ruby/
(-)ruby/files/md5 (-1 / +1 lines)
Line 1 Link Here
1
MD5 (ruby-1.0-971125.tar.gz) = 832404a835e8b9c6681bf85410ff5975
1
MD5 (ruby-1.0-971225.tar.gz) = ae6508e0dc9c26ded7221e5200c34493
(-)ruby/patches/patch-ah (+11 lines)
Line 0 Link Here
1
--- string.c.orig	Tue Dec  9 10:18:11 1997
2
+++ string.c	Sat Feb  7 13:05:36 1998
3
@@ -421,7 +421,7 @@
4
     UINT len;
5
     int retval;
6
 
7
-    if (ignorecase != FALSE) {
8
+    if (ignorecase) {
9
 	return str_cicmp(str1, str2);
10
     }
11
 
(-)ruby/patches/patch-ai (+14 lines)
Line 0 Link Here
1
--- file.c.orig	Mon Oct 20 11:09:34 1997
2
+++ file.c	Sat Feb  7 13:00:38 1998
3
@@ -1326,6 +1326,11 @@
4
     if (!e) return 0;
5
 
6
     l2 = strlen(e);
7
+    if (l2 == 2 && e[1] == '*') {
8
+      e = strrchr(p, *e);
9
+      if (!e) return 0;
10
+      return e - p;
11
+    }
12
     if (l1 < l2) return l1;
13
 
14
     if (strcmp(p+l1-l2, e) == 0) {
(-)ruby/patches/patch-aj (+20 lines)
Line 0 Link Here
1
--- lib/tktext.rb.orig	Tue Aug 19 16:23:57 1997
2
+++ lib/tktext.rb	Sat Feb  7 13:01:50 1998
3
@@ -131,7 +131,7 @@
4
     @t = parent
5
     @path = @id = $tk_text_mark
6
     $tk_text_mark = $tk_text_mark.succ
7
-    tk_call @t.path, 'set', @id, index
8
+    tk_call @t.path, 'mark', 'set', @id, index
9
     @t._addtag id, self
10
   end
11
   def id
12
@@ -139,7 +139,7 @@
13
   end
14
 
15
   def set(where)
16
-    tk_call @t.path, 'mark', 'unset', @id, where
17
+    tk_call @t.path, 'mark', 'set', @id, where
18
   end
19
 
20
   def unset

Return to bug 5684