File tree Expand file tree Collapse file tree 5 files changed +17
-2
lines changed Expand file tree Collapse file tree 5 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ Tue May 20 00:45:40 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * dir.c (push_braces): do not push_braces() unless rbrace is found.
4
+ (ruby-bugs-ja:PR#469)
5
+
1
6
Thu May 15 19:30:44 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
2
7
3
8
* eval.c (rb_block_given_p): false if ruby_block is null.
@@ -24,6 +29,10 @@ Sun Mar 23 19:55:32 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
24
29
25
30
* gc.c (rb_gc_call_finalizer_at_exit): use free() if dfree is -1.
26
31
32
+ Thu Mar 20 10:11:23 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
33
+
34
+ * eval.c (rb_f_require): clear ruby_errinfo.
35
+
27
36
Wed Mar 19 23:05:30 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
28
37
29
38
* lib/tracer.rb (trace_func): save and recover Thread.critical state.
@@ -40,6 +49,7 @@ Fri Mar 7 00:30:33 2003 WATANABE Hirofumi <eban@ruby-lang.org>
40
49
41
50
* ext/Win32API/extconf.rb: no need to add gcc options.
42
51
52
+ >>>>>>> 1.285.2.597
43
53
Fri Feb 28 22:53:55 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
44
54
45
55
* win32/win32.c (flock): maps error code.
@@ -13953,3 +13963,6 @@ Wed Aug 13 17:51:46 1997 Yukihiro Matsumoto <matz@netlab.co.jp>
13953
13963
13954
13964
* version 1.1 alpha0 released.
13955
13965
13966
+ Local variables:
13967
+ add-log-time-format: current-time-string
13968
+ end:
Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ push_braces(ary, s)
783
783
p ++ ;
784
784
}
785
785
786
- if (lbrace ) {
786
+ if (lbrace && rbrace ) {
787
787
int len = strlen (s );
788
788
if (len >= MAXPATHLEN )
789
789
buf = xmalloc (len + 1 );
Original file line number Diff line number Diff line change @@ -5504,6 +5504,7 @@ rb_f_require(obj, fname)
5504
5504
SCOPE_SET (old_vmode );
5505
5505
}
5506
5506
if (state ) JUMP_TAG (state );
5507
+ ruby_errinfo = Qnil ;
5507
5508
5508
5509
return Qtrue ;
5509
5510
Original file line number Diff line number Diff line change @@ -1227,7 +1227,7 @@ def inspect
1227
1227
def ==( other )
1228
1228
case other
1229
1229
when TkVariable
1230
- self . equal ( self )
1230
+ self . equal ( other )
1231
1231
when String
1232
1232
self . to_s == other
1233
1233
when Integer
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env ruby
2
2
3
+ $KCODE = "none"
3
4
$testnum= 0
4
5
$ntest= 0
5
6
$failed = 0
You can’t perform that action at this time.
0 commit comments