From 2fbaf02ed3919483c16aad9a8714044a52de43cd Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 12 Mar 2002 09:28:50 +0000 Subject: * regex.c (re_compile_pattern): '\0111' should be '\011' plus '1', since octal literals are formed by three digits at most. * marshal.c (w_object): module inclusion using extend() should also be detected. * eval.c (rb_eval_cmd): cbase should not be NULL; it should be either ruby_wrapper or Object. * enum.c (enum_each_with_index): should return self. * process.c (proc_setpgrp): should return value for non-void function. * process.c (proc_getpgid): should raise exception if getpgid() return -1. * string.c (rb_str_ljust): should return a duplicated string. * string.c (rb_str_rjust): ditto. * string.c (rb_str_center): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index f380764ed..4d37e6469 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,11 @@ Mon Mar 11 21:03:37 2002 Nobuyoshi Nakada * ext/stringio: new. +Mon Mar 11 18:03:37 2002 Yukihiro Matsumoto + + * regex.c (re_compile_pattern): '\0111' should be '\011' plus '1', + since octal literals are formed by three digits at most. + Mon Mar 11 14:44:38 2002 Yukihiro Matsumoto * marshal.c (w_object): module inclusion using extend() should -- cgit