From 5438b12bc50adf9958bba6ea9de01503dc588af2 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 13 Nov 2001 08:19:52 +0000 Subject: * signal.c (sighandle): should not re-register sighandler if POSIX_SIGNAL is defined. * eval.c (error_print): errat array may be empty. * eval.c (rb_eval_cmd): should not upgrade safe level unless explicitly specified by argument newly added. * signal.c (sig_trap): should not allow tainted trap closure. * variable.c (rb_f_trace_var): should not allow trace_var on safe level higher than 3. * variable.c (rb_f_trace_var): should not allow tainted trace closure. * gc.c: do not use static stack until system stack overflows. * eval.c (eval): should call Exception#exception instead of calling rb_exc_new3() directly. * error.c (exc_exception): set "mesg" directly to the clone. it might be better to set mesg via some method for flexibility. * variable.c (cvar_override_check): should print original module name, if 'a' is T_ICLASS. * parse.y (yylex): float '1_.0' should not be allowed. * variable.c (var_getter): should care about var as Qfalse (ruby-bugs#PR199). * array.c (cmpint): <=> or block for {min,max} may return bignum. * array.c (sort_1): use rb_compint. * array.c (sort_2): ditto. * enum.c (min_ii): ditto. * enum.c (min_ii): ditto. * enum.c (max_i): ditto. * enum.c (max_ii): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index c2977eea2..37652f567 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ Tue Nov 13 16:49:16 2001 Usaku Nakamura * win32/win32.c (do_spawn): ditto. +Tue Nov 13 14:39:11 2001 WATANABE Tetsuya + + * signal.c (sighandle): should not re-register sighandler if + POSIX_SIGNAL is defined. + Tue Nov 13 12:55:59 2001 Usaku Nakamura * win32/win32.c (do_spawn): use CreateChild() instead of calling @@ -70,6 +75,45 @@ Tue Nov 13 12:38:12 2001 Usaku Nakamura * win32/win32.c, win32/win32.h (win32_free_environ): free environment variables list. [new] +Mon Nov 12 16:48:48 2001 Yukihiro Matsumoto + + * eval.c (error_print): errat array may be empty. + +Mon Nov 12 01:30:37 2001 Yukihiro Matsumoto + + * eval.c (rb_eval_cmd): should not upgrade safe level unless + explicitly specified by argument newly added. + + * signal.c (sig_trap): should not allow tainted trap closure. + + * variable.c (rb_f_trace_var): should not allow trace_var on safe + level higher than 3. + + * variable.c (rb_f_trace_var): should not allow tainted trace + closure. + +Sun Nov 11 00:12:23 2001 TAMURA Takashi + + * gc.c: do not use static stack until system stack overflows. + +Sat Nov 10 03:57:09 2001 Yukihiro Matsumoto + + * eval.c (eval): should call Exception#exception instead of + calling rb_exc_new3() directly. + + * error.c (exc_exception): set "mesg" directly to the clone. it + might be better to set mesg via some method for flexibility. + +Sat Nov 10 00:14:24 2001 Yukihiro Matsumoto + + * variable.c (cvar_override_check): should print original module + name, if 'a' is T_ICLASS. + + * parse.y (yylex): float '1_.0' should not be allowed. + + * variable.c (var_getter): should care about var as Qfalse + (ruby-bugs#PR199). + Fri Nov 9 13:50:06 2001 Usaku Nakamura * win32/config.status.in: make CFLAGS same as Makefile's one. @@ -82,6 +126,22 @@ Thu Nov 8 20:20:37 2001 Nobuyoshi Nakada * eval.c (rb_call0): adjust caller source file/line while evaluating optional arguments. +Thu Nov 8 18:41:58 2001 Yukihiro Matsumoto + + * array.c (cmpint): <=> or block for {min,max} may return bignum. + + * array.c (sort_1): use rb_compint. + + * array.c (sort_2): ditto. + + * enum.c (min_ii): ditto. + + * enum.c (min_ii): ditto. + + * enum.c (max_i): ditto. + + * enum.c (max_ii): ditto. + Thu Nov 8 18:21:02 2001 Yukihiro Matsumoto * file.c (path_check_1): forgot to initialize 'p'. -- cgit