From 5203cd3058cf9e6731a5eafef7b48b13f066b1cb Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 3 Sep 2001 05:37:42 +0000 Subject: * ruby.c (proc_options): should not alter origargv[]. * ruby.c (set_arg0): long strings for $0 dumped core. * ruby.c (set_arg0): use setprogtitle() if it's available. * io.c (rb_io_popen): accept integer flags as mode. * file.c (rb_find_file_ext): extension table can be supplied from outside. renamed. * eval.c (rb_f_require): replace rb_find_file_noext by rb_find_file_ext. * eval.c (rb_provided): should also check feature without extension. * numeric.c (flo_to_s): do not rely on decimal point to be '.' git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 0fbf85f42..629557ccf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,12 @@ Mon Sep 3 14:11:17 2001 Akinori MUSHA * error.c: unbreak the build on *BSD with gcc 3.0.1 by removing the conflicting declaration of sys_nerr for *BSD. +Sat Sep 1 18:50:07 2001 Yukihiro Matsumoto + + * ruby.c (proc_options): should not alter origargv[]. + + * ruby.c (set_arg0): long strings for $0 dumped core. + Sat Sep 1 09:50:54 2001 Nobuyoshi Nakada * ruby.c (set_arg0): prevent SEGV when val is longer than the @@ -11,6 +17,31 @@ Sat Sep 1 09:50:54 2001 Nobuyoshi Nakada * ruby.c (ruby_process_options): initialize total length of original arguments at first. +Sat Sep 1 14:05:28 2001 Brian F. Feldman + + * ruby.c (set_arg0): use setprogtitle() if it's available. + +Sat Sep 1 03:49:11 2001 Yukihiro Matsumoto + + * io.c (rb_io_popen): accept integer flags as mode. + +Fri Aug 31 19:46:05 2001 Nobuyoshi Nakada + + * file.c (rb_find_file_ext): extension table can be supplied from + outside. renamed. + + * eval.c (rb_f_require): replace rb_find_file_noext by + rb_find_file_ext. + +Fri Aug 31 19:26:55 2001 Nobuyoshi Nakada + + * eval.c (rb_provided): should also check feature without + extension. + +Fri Aug 31 13:06:33 2001 Yukihiro Matsumoto + + * numeric.c (flo_to_s): do not rely on decimal point to be '.' + Wed Aug 29 02:18:53 2001 Yukihiro Matsumoto * parse.y (yylex): ternary ? can be followed by newline. -- cgit