diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-01 09:42:38 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-01 09:42:38 +0000 |
commit | fedf48986da718580062d081dda38c4ee182c254 (patch) | |
tree | 65e06d76c544a8d80296d686bf88ec3af41fdc50 | |
parent | acbb1c943457d3b8802f099ee0e34331bc78bd38 (diff) |
2000-05-01
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 161 | ||||
-rw-r--r-- | MANIFEST | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.EXT | 2 | ||||
-rw-r--r-- | README.jp | 2 | ||||
-rw-r--r-- | array.c | 87 | ||||
-rw-r--r-- | bignum.c | 6 | ||||
-rw-r--r-- | class.c | 21 | ||||
-rw-r--r-- | compar.c | 4 | ||||
-rw-r--r-- | config.guess | 4 | ||||
-rw-r--r-- | config.sub | 2 | ||||
-rw-r--r-- | configure | 512 | ||||
-rw-r--r-- | configure.in | 18 | ||||
-rw-r--r-- | dir.c | 6 | ||||
-rw-r--r-- | dln.c | 4 | ||||
-rw-r--r-- | dln.h | 7 | ||||
-rw-r--r-- | enum.c | 5 | ||||
-rw-r--r-- | env.h | 7 | ||||
-rw-r--r-- | error.c | 12 | ||||
-rw-r--r-- | eval.c | 92 | ||||
-rw-r--r-- | ext/extmk.rb.in | 2 | ||||
-rw-r--r-- | ext/socket/extconf.rb | 2 | ||||
-rw-r--r-- | ext/socket/getaddrinfo.c | 4 | ||||
-rw-r--r-- | ext/socket/socket.c | 45 | ||||
-rw-r--r-- | ext/tk/lib/tktext.rb | 39 | ||||
-rw-r--r-- | file.c | 6 | ||||
-rw-r--r-- | gc.c | 6 | ||||
-rw-r--r-- | hash.c | 6 | ||||
-rw-r--r-- | inits.c | 4 | ||||
-rw-r--r-- | intern.h | 19 | ||||
-rw-r--r-- | io.c | 65 | ||||
-rw-r--r-- | lib/cgi.rb | 61 | ||||
-rw-r--r-- | lib/cgi/session.rb | 2 | ||||
-rw-r--r-- | lib/debug.rb | 314 | ||||
-rw-r--r-- | lib/net/telnet.rb | 749 | ||||
-rw-r--r-- | lib/telnet.rb | 742 | ||||
-rw-r--r-- | lib/thread.rb | 6 | ||||
-rw-r--r-- | lib/timeout.rb | 3 | ||||
-rw-r--r-- | main.c | 6 | ||||
-rw-r--r-- | marshal.c | 6 | ||||
-rw-r--r-- | math.c | 4 | ||||
-rw-r--r-- | misc/ruby-mode.el | 46 | ||||
-rw-r--r-- | node.h | 5 | ||||
-rw-r--r-- | numeric.c | 14 | ||||
-rw-r--r-- | object.c | 8 | ||||
-rw-r--r-- | pack.c | 4 | ||||
-rw-r--r-- | parse.y | 20 | ||||
-rw-r--r-- | prec.c | 4 | ||||
-rw-r--r-- | process.c | 6 | ||||
-rw-r--r-- | random.c | 4 | ||||
-rw-r--r-- | range.c | 4 | ||||
-rw-r--r-- | re.c | 6 | ||||
-rw-r--r-- | re.h | 6 | ||||
-rw-r--r-- | regex.c | 6 | ||||
-rw-r--r-- | ruby.c | 2 | ||||
-rw-r--r-- | ruby.h | 8 | ||||
-rw-r--r-- | rubyio.h | 4 | ||||
-rw-r--r-- | rubysig.h | 7 | ||||
-rw-r--r-- | sample/test.rb | 6 | ||||
-rw-r--r-- | signal.c | 4 | ||||
-rw-r--r-- | sprintf.c | 2 | ||||
-rw-r--r-- | string.c | 39 | ||||
-rw-r--r-- | struct.c | 6 | ||||
-rw-r--r-- | time.c | 4 | ||||
-rw-r--r-- | util.c | 4 | ||||
-rw-r--r-- | util.h | 5 | ||||
-rw-r--r-- | variable.c | 8 | ||||
-rw-r--r-- | version.c | 4 | ||||
-rw-r--r-- | version.h | 4 |
69 files changed, 1836 insertions, 1450 deletions
@@ -1,3 +1,58 @@ +Sat Apr 29 04:58:12 Nobuyoshi Nakada <[email protected]> + + * array.c (rb_ary_unshift_m): performance improvement. + +Fri Apr 28 00:19:22 Nobuyoshi Nakada <[email protected]> + + * array.c (rb_ary_unshift_m): takes items to push. + +Wed Apr 26 15:23:02 2000 Yukihiro Matsumoto <[email protected]> + + * string.c (rb_str_succ): insert carrying character just before + the leftmost alpha numeric character. + + * string.c (rb_str_succ): proper behavior for "".succ and "\377".succ. + + * string.c (rb_str_succ): use realloc and memmove. + +Tue Apr 25 14:30:13 2000 Yukihiro Matsumoto <[email protected]> + + * io.c (rb_io_gets_internal): shortcut when rs == rb_default_rs. + +Sat Apr 22 23:14:41 2000 SHIROYAMA Takayuki <[email protected]> + + * configure.in: MacOS X support. + +Fri Apr 21 21:44:34 2000 WATANABE Hirofumi <[email protected]> + + * io.c (rb_io_s_pipe): should set FMODE_SYNC. + +Thu Apr 20 16:59:22 2000 Nobuyoshi Nakada <[email protected]> + + * eval.c (massign): `*lvalue = false' should assign `[false]' to + lvalue. + +Wed Apr 19 08:35:08 2000 Yukihiro Matsumoto <[email protected]> + + * class.c (rb_singleton_class): generate singleton class for + special constants: nil, true, false. + +Wed Apr 19 02:09:30 2000 Yukihiro Matsumoto <[email protected]> + + * class.c (rb_singleton_class): singleton method for nil, true, + false is possible now. + + * eval.c (rb_eval): ditto. + +Mon Apr 17 15:16:31 2000 Yukihiro Matsumoto <[email protected]> + + * io.c (rb_io_close): to detect some exceptional status, writable + IO should be flushed before close; + +Sat Apr 15 18:29:00 2000 Yukihiro Matsumoto <[email protected]> + + * array.c (rb_ary_collect_bang): Array#filter renamed. + Tue Apr 11 21:14:42 2000 Katsuyuki Komatsu <[email protected]> * config_s.dj: add @sitedir@. @@ -115,7 +170,7 @@ Tue Mar 21 12:57:50 2000 Yukihiro Matsumoto <[email protected]> Sat Mar 18 12:36:09 2000 Nobuyoshi Nakada <[email protected]> - * eval.c (rb_backtrace, make_backtrace): removed unsed variable + * eval.c (rb_backtrace, make_backtrace): removed unused variable `lev'. * eval.c (rb_attr): calls `method_added' at attribute definition. @@ -548,7 +603,7 @@ Mon Jan 24 02:56:44 2000 Yukihiro Matsumoto <[email protected]> * eval.c (rb_eval): when defining class is already there, and superclass differ, throw away the old class. - * variable.c (rb_const_set): gives warining again on constant + * variable.c (rb_const_set): gives warning again on constant redefinition. * error.c (Init_Exception): SyntaxError, NameError, LoadError and @@ -704,7 +759,7 @@ Mon Dec 27 12:35:47 1999 Katsuyuki Komatsu <[email protected]> Sun Dec 26 23:15:13 1999 Katsuyuki Komatsu <[email protected]> * win32/win32.c (mypopen): raise catchable error instead of rb_fatal. - * win32/win32.c (mypclose): fix process handle laek. + * win32/win32.c (mypclose): fix process handle leak. Sun Dec 26 16:17:11 1999 Katsuyuki Komatsu <[email protected]> @@ -735,7 +790,7 @@ Tue Dec 21 17:21:28 1999 Koji Oda <[email protected]> Mon Dec 20 19:08:12 1999 Nobuyoshi Nakada <[email protected]> - * file.c (rb_file_s_expand_path): handle dir separetor correctly. + * file.c (rb_file_s_expand_path): handle dir separator correctly. Sun Dec 19 22:56:31 1999 KANEKO Naoshi <[email protected]> @@ -768,7 +823,7 @@ Wed Dec 15 01:35:29 1999 Yukihiro Matsumoto <[email protected]> Mon Dec 13 15:15:31 1999 Yukihiro Matsumoto <[email protected]> * regex.c (re_adjust_startpos): separate startpos adjustment - because of major performace drawback. + because of major performance drawback. * class.c (rb_singleton_class): tainted status of the singleton class must be synchronized with the object. @@ -931,7 +986,7 @@ Sat Nov 20 10:10:41 1999 Yukihiro Matsumoto <[email protected]> Fri Nov 19 18:06:21 1999 Yukihiro Matsumoto <[email protected]> - * dir.c (glob): recurseve wildcard match by `**' ala zsh. + * dir.c (glob): recursive wildcard match by `**' ala zsh. Fri Nov 19 11:44:26 1999 EGUCHI Osamu <[email protected]> @@ -981,7 +1036,7 @@ Sat Nov 13 07:34:18 1999 Yukihiro Matsumoto <[email protected]> assign shared variables within methods. * eval.c (rb_eval): remove warnings from constants modification, - becase they are no longer constants. + because they are no longer constants. * parse.y (node_assign): modified for shared variables. @@ -1364,7 +1419,7 @@ Wed Sep 1 00:28:27 1999 Yukihiro Matsumoto <[email protected]> Fri Aug 28 17:32:55 1999 Yasuhiro Fukuma <[email protected]> * eval.c (rb_eval): should set return value (nil) explicitly if a - value is ommited for return statement. + value is omitted for return statement. Thu Aug 26 15:06:11 1999 Masaki Fukushima <[email protected]> @@ -1389,7 +1444,7 @@ Fri Aug 20 20:50:58 1999 Kenji Nagasawa <[email protected]> Thu Aug 19 10:50:43 1999 WATANABE Tetsuya <[email protected]> - * gc.c (rb_gc): add volatile to avoid GCC optimaize bug(?). + * gc.c (rb_gc): add volatile to avoid GCC optimize bug(?). Wed Aug 18 23:48:10 1999 Yukihiro Matsumoto <[email protected]> @@ -1404,7 +1459,7 @@ Fri Aug 13 15:41:39 1999 Yukihiro Matsumoto <[email protected]> Fri Aug 13 03:16:07 1999 Yukihiro Matsumoto <[email protected]> * io.c (argf_forward): since $stdout may be non-IO, ARGF.file is - not granteed to be IO. check and forwarding added to every ARGF + not guaranteed to be IO. check and forwarding added to every ARGF method. * io.c (set_outfile): $stdout/$stderr may not be IO now. @@ -1544,7 +1599,7 @@ Fri Jul 30 02:11:48 1999 Yukihiro Matsumoto <[email protected]> * io.c (rb_io_fptr_close): do not call rb_sys_wait() on finalize. - * eval.c (yield_under_i): cbase context should be maintaind for + * eval.c (yield_under_i): cbase context should be maintained for Module#module_eval(). suggested by <[email protected]>. Wed Jul 28 01:18:28 1999 WATANABE Hirofumi <[email protected]> @@ -1583,7 +1638,7 @@ Fri Jul 23 02:49:49 1999 Yukihiro Matsumoto <[email protected]> Thu Jul 22 19:37:22 1999 Yukihiro Matsumoto <[email protected]> - * eval.c (rb_thread_join): get_backtrace() may retrun Qnil. + * eval.c (rb_thread_join): get_backtrace() may return Qnil. typecheck added. Tue Jul 20 14:36:43 1999 WATANABE Hirofumi <[email protected]> @@ -1634,7 +1689,7 @@ Fri Jul 16 10:58:22 1999 WATANABE Tetsuya <[email protected]> Fri Jul 16 09:58:15 1999 Katsuyuki Komatsu <[email protected]> - * many files: clean up unsed variables found by gcc -Wall. + * many files: clean up unused variables found by gcc -Wall. * lib/mkmf.rb: better cygwin support etc. @@ -1966,7 +2021,7 @@ Fri Jun 11 23:27:00 1999 Tadayoshi Funaba <[email protected]> Fri Jun 11 15:21:21 1999 Yukihiro Matsumoto <[email protected]> - * gc.c (rb_gc_mark_locations): add safty margin 1. + * gc.c (rb_gc_mark_locations): add safety margin 1. * eval.c (ruby_run): should protect toplevel node tree. @@ -1975,7 +2030,7 @@ Fri Jun 11 15:21:21 1999 Yukihiro Matsumoto <[email protected]> Fri Jun 11 01:50:25 1999 Yukihiro Matsumoto <[email protected]> * eval.c (ruby_run): Init_stack() was called too late; local - variables happend to be higher (or lower) than stack_start. + variables happened to be higher (or lower) than stack_start. Thu Jun 10 16:41:48 1999 Yukihiro Matsumoto <[email protected]> @@ -2080,7 +2135,7 @@ Tue Jun 1 15:29:33 1999 Yukihiro Matsumoto <[email protected]> * eval.c (module_setup): need to add PUSH_VAR/POP_VAR to clear dyna vars link list. - * version.h (RUBY_RELEASE_CODE): integer macro contant for source + * version.h (RUBY_RELEASE_CODE): integer macro constant for source version detection. Sun May 30 22:19:12 1999 Kenji Nagasawa <[email protected]> @@ -2133,7 +2188,7 @@ Fri May 28 17:16:49 1999 Yukihiro Matsumoto <[email protected]> * ext/socket/socket.c (setipaddr): re-wrote using ip_addrsetup(). - * ext/sockt/socket.c (ip_addrsetup): decode symbolic address + * ext/socket/socket.c (ip_addrsetup): decode symbolic address <broadcast>. Thu May 27 12:27:42 1999 Yukihiro Matsumoto <[email protected]> @@ -2331,7 +2386,7 @@ Thu May 6 13:21:41 1999 Yukihiro Matsumoto <[email protected]> Thu May 4 12:34:18 1999 Koji Arai <[email protected]> - * parse.y (parse_string): there shuould be newline escape by + * parse.y (parse_string): there should be newline escape by backslashes in strings. * parse.y (parse_qstring): ditto. @@ -2696,7 +2751,7 @@ Fri Mar 12 02:12:50 1999 Yukihiro Matsumoto <[email protected]> Thu Mar 11 18:23:50 1999 WATANABE Tetsuya <[email protected]> - * ext/socket/socket.c (Init_socket): UDPsocket was ommited. + * ext/socket/socket.c (Init_socket): UDPsocket was omitted. Thu Mar 11 16:43:30 1999 Yukihiro Matsumoto <[email protected]> @@ -2775,8 +2830,8 @@ Tue Mar 2 17:04:19 1999 Yukihiro Matsumoto <[email protected]> Mon Mar 1 14:05:12 1999 Yukihiro Matsumoto <[email protected]> * eval.c (rb_call0): adjust argv for optional arguments. super - without arguments emit superclasse method with the value from - optinal arguments. enabled as experiment. + without arguments emit superclass method with the value from + optional arguments. enabled as experiment. Sun Feb 28 14:04:07 1999 WATANABE Hirofumi <[email protected]> @@ -2864,9 +2919,9 @@ Tue Feb 23 14:21:41 1999 Yukihiro Matsumoto <[email protected]> Tue Feb 23 12:32:41 1999 WATANABE Hirofumi <[email protected]> - * eval.c (rb_load): tilde expandion moved to find_file. + * eval.c (rb_load): tilde expansion moved to find_file. - * eval.c (find_file): tilde expandion added. + * eval.c (find_file): tilde expansion added. Tue Feb 23 10:50:20 1999 Yukihiro Matsumoto <[email protected]> @@ -2913,18 +2968,18 @@ Fri Feb 19 00:25:57 1999 Yukihiro Matsumoto <[email protected]> * time.c (time_plus): Time#+ should not receive Time object operand. - * string.c (rb_str_substr): nagative length raises exception now. + * string.c (rb_str_substr): negative length raises exception now. * array.c (beg_len): if end == -1, it points end of the array. - * array.c (rb_ary_subseq): nagative length raises exception now. + * array.c (rb_ary_subseq): negative length raises exception now. Thu Feb 18 20:57:04 1999 Tadayoshi Funaba <[email protected]> * time.c (rb_strftime): strftime() may return 0 on success too. - * time.c (time_strftime): `\0' within format string shoule not be - ommited in the result. + * time.c (time_strftime): `\0' within format string should not be + omitted in the result. * time.c (rb_strftime): zero length format. @@ -2992,7 +3047,7 @@ Mon Feb 15 11:43:22 1999 GOTO Kentaro <[email protected]> Sun Feb 14 22:36:40 1999 EGUCHI Osamu <[email protected]> - * sprintf.c (rb_f_sprintf): `%G' was ommited. + * sprintf.c (rb_f_sprintf): `%G' was omitted. Sun Feb 14 12:47:48 1999 EGUCHI Osamu <[email protected]> @@ -3001,7 +3056,7 @@ Sun Feb 14 12:47:48 1999 EGUCHI Osamu <[email protected]> * numeric.c (Init_Numeric): FloatDomainError added. * configure.in (AC_REPLACE_FUNCS): add checks for functions - insinf, isnan, and finite. + isinf, isnan, and finite. Sat Feb 13 01:24:16 1999 Yukihiro Matsumoto <[email protected]> @@ -3075,7 +3130,7 @@ Sat Feb 6 22:56:21 1999 Yukihiro Matsumoto <[email protected]> Sat Feb 6 03:06:17 1999 Yukihiro Matsumoto <[email protected]> - * re.c (match_getter): accessng $~ without matching caused SEGV. + * re.c (match_getter): accessing $~ without matching caused SEGV. Fri Feb 5 22:11:08 1999 EGUCHI Osamu <[email protected]> @@ -3107,7 +3162,7 @@ Thu Feb 4 11:56:24 1999 Yukihiro Matsumoto <[email protected]> * configure.in (strtod): add strtod compatible check. - * numeric.c (rb_num2long): missing/vsnprintf.c does not supprt + * numeric.c (rb_num2long): missing/vsnprintf.c does not support floating points. * numeric.c (flo_to_s): ditto. @@ -3147,7 +3202,7 @@ Wed Feb 3 15:03:16 1999 Yukihiro Matsumoto <[email protected]> Tue Feb 2 17:11:26 1999 WATANABE Tetsuya <[email protected]> - * string.c (rb_str_gsub_bang): too small realoc condition. + * string.c (rb_str_gsub_bang): too small realloc condition. Mon Feb 1 10:01:17 1999 EGUCHI Osamu <[email protected]> @@ -3164,7 +3219,7 @@ Sat Jan 30 08:45:16 1999 IKARASHI Akira <[email protected]> Sat Jan 30 13:38:24 1999 Yukihiro Matsumoto <[email protected]> * regex.c (re_compile_pattern): mbchars should match with \w - within character classs. Was matching with \W. + within character class. Was matching with \W. * regex.c (re_match): \w should match with multi byte characters, not its first byte. @@ -3461,7 +3516,7 @@ Mon Dec 7 22:08:22 1998 Yukihiro Matsumoto <[email protected]> Mon Dec 7 18:24:50 1998 WATANABE Tetsuya <[email protected]> - * ruby.c (set_arg0): $0 supprt for HP-UX. + * ruby.c (set_arg0): $0 support for HP-UX. Mon Dec 7 01:30:28 1998 WATANABE Hirofumi <[email protected]> @@ -3624,7 +3679,7 @@ Wed Nov 11 10:54:57 1998 Yukihiro Matsumoto <[email protected]> Tue Nov 10 00:22:11 1998 EGUCHI Osamu <[email protected]> - * configure.in: elf supprt for FreeBSD 3.x + * configure.in: elf support for FreeBSD 3.x Tue Nov 10 00:05:43 1998 Yukihiro Matsumoto <[email protected]> @@ -3755,7 +3810,7 @@ Fri Oct 16 15:31:45 1998 Yukihiro Matsumoto <[email protected]> Thu Oct 15 13:54:48 1998 Yukihiro Matsumoto <[email protected]> - * parse.y (arg): local variabls can be accessed within right side + * parse.y (arg): local variables can be accessed within right side expression in assignment, notably in blocks. Wed Oct 14 00:18:33 1998 Yukihiro Matsumoto <[email protected]> @@ -3869,7 +3924,7 @@ Mon Sep 14 14:42:27 1998 Yukihiro Matsumoto <[email protected]> * regex.c (re_match): beginning and end of the string, do not automatically match `\b'. - * string.c (scan_once): comsume at leaset on character. + * string.c (scan_once): consume at least on character. * regex.c (re_search): wrong behavior for negative range. @@ -4197,7 +4252,7 @@ Fri Jul 3 11:20:46 1998 Yukihiro Matsumoto <[email protected]> * numeric.c (fix_mul): use FIX2LONG() instead of FIX2INT() for 64bit architectures. - * marshal.c (r_bytes): remove weird casting bwetween pointer and int. + * marshal.c (r_bytes): remove weird casting between pointer and int. * process.c (proc_setsid): new method Process#setsid(). @@ -4656,7 +4711,7 @@ Tue Apr 28 00:07:38 1998 Yukihiro Matsumoto <[email protected]> Mon Apr 27 16:59:17 1998 Yukihiro Matsumoto <[email protected]> * ext/gtk/gtk.c (Init_gtk): use timeout, not idle to avoid - comsuming CPU too much. + consuming CPU too much. * lib/tk.rb: use tcltklib#_invoke instead of `_eval'. @@ -4997,7 +5052,7 @@ Tue Mar 31 13:23:58 1998 Yukihiro Matsumoto <[email protected]> Mon Mar 30 11:12:29 1998 Yukihiro Matsumoto <[email protected]> - * file.c (f_test): raises exception for unkown command. + * file.c (f_test): raises exception for unknown command. * eval.c (Init_eval): `class_eval': alias to the module_eval. @@ -5114,7 +5169,7 @@ Wed Mar 18 17:46:31 1998 Yukihiro Matsumoto <[email protected]> * ruby.c (load_file): new file object constant DATA. Only available for the script from the file. - * regex.c (re_match): forwading failure point popped too much. + * regex.c (re_match): forwarding failure point popped too much. Tue Mar 17 18:23:06 1998 Yukihiro Matsumoto <[email protected]> @@ -5229,7 +5284,7 @@ Fri Mar 6 17:23:07 1998 Yukihiro Matsumoto <[email protected]> primitive classes (mostly perfect). * ext/curses/curses.c (curses_finalize): restore original state at - interpreter temination. + interpreter termination. * ext/curses/curses.c (curses_addstr): forgot to check argument type (caused SEGV). now uses STR2CSTR() macro. @@ -5273,7 +5328,7 @@ Tue Mar 3 11:21:28 1998 Yukihiro Matsumoto <[email protected]> Tue Mar 3 08:04:56 1998 Tadayoshi Funaba <[email protected]> - * struct.c (struct_alloc): imcomplete struct initialization made + * struct.c (struct_alloc): incomplete struct initialization made GC to access unallocated addresses. Mon Mar 2 16:28:27 1998 Yukihiro Matsumoto <[email protected]> @@ -5644,7 +5699,7 @@ Tue Jan 6 00:27:43 1998 Yukihiro Matsumoto <[email protected]> Mon Jan 5 16:59:13 1998 WATANABE Hirofumi <[email protected]> - * file.c (file_s_basename): removes any extention by ".*". + * file.c (file_s_basename): removes any extension by ".*". Sun Jan 4 19:36:22 1998 WATANABE Hirofumi <[email protected]> @@ -5782,7 +5837,7 @@ Fri Dec 12 00:50:25 1997 Yukihiro Matsumoto <[email protected]> * eval.c (rb_eval): new visibility status `function'. - * parse.y (yycompile): do not clear eval_tree. thus enable multipe + * parse.y (yycompile): do not clear eval_tree. thus enable multiple command line script by option `-e'. * eval.c (rb_eval): END execute just once. @@ -5863,7 +5918,7 @@ Mon Dec 1 15:24:41 1997 Yukihiro Matsumoto <[email protected]> Wed Nov 26 18:18:05 1997 Yukihiro Matsumoto <[email protected]> - * lib/mkmf.rb: generate Makefile for extention modules out of ruby + * lib/mkmf.rb: generate Makefile for extension modules out of ruby source tree. use like `ruby -r mkmf extconf.rb'. * numeric.c (fix2str): enlarge buffer to prevent overflow on some @@ -6061,7 +6116,7 @@ Fri Oct 3 10:51:10 1997 Yukihiro Matsumoto <[email protected]> * eval.c (ruby_options): f_require() called too early. - * eval.c (rb_provide): module extentions should always be `.o'. + * eval.c (rb_provide): module extensions should always be `.o'. Thu Oct 2 11:38:31 1997 Yukihiro Matsumoto <[email protected]> @@ -6257,7 +6312,7 @@ Mon Sep 1 13:42:48 1997 Yukihiro Matsumoto <[email protected]> * class.c (rb_define_attr): always defines accessors. - * eval.c (rb_call): alias occured in the module body caused SEGV. + * eval.c (rb_call): alias occurred in the module body caused SEGV. * parse.y: did not generate here document strings properly. @@ -6276,7 +6331,7 @@ Fri Aug 29 11:10:21 1997 Yukihiro Matsumoto <[email protected]> unnamed fundamental classes, such as Object, String, etc. * variable.c (rb_name_class): can't name class before String class - is initilialized. + is initialized. * inits.c (rb_call_inits): unrecognized dependency from GC to Array. @@ -6310,7 +6365,7 @@ Wed Aug 27 11:32:42 1997 Yukihiro Matsumoto <[email protected]> * variable.c (fc_i): some classes/modules does not have iv_tbl. - * variable.c (find_class_path): avoid inifinite loop. + * variable.c (find_class_path): avoid infinite loop. Tue Aug 26 13:43:47 1997 Yukihiro Matsumoto <[email protected]> @@ -6327,7 +6382,7 @@ Tue Aug 26 13:43:47 1997 Yukihiro Matsumoto <[email protected]> * object.c (Init_Object): superclass()'s method argument setting was wrong again. - * class.c (mod_anscestors): list superclasses and included modules + * class.c (mod_ancestors): list superclasses and included modules in priority order. Mon Aug 25 11:53:11 1997 Yukihiro Matsumoto <[email protected]> @@ -6342,7 +6397,7 @@ Mon Aug 25 11:53:11 1997 Yukihiro Matsumoto <[email protected]> Sat Aug 23 21:39:05 1997 Yukihiro Matsumoto <[email protected]> - * parse.y (asignable): remove unnecessary local variable + * parse.y (assignable): remove unnecessary local variable initialize by nil. Fri Aug 22 14:26:40 1997 Yukihiro Matsumoto <[email protected]> @@ -6407,7 +6462,7 @@ Fri Aug 15 15:49:46 1997 Yukihiro Matsumoto <[email protected]> * eval.c (call_trace_func): block context switch in the trace function. - * eval.c (rb_eval): clear method cache at class extention. + * eval.c (rb_eval): clear method cache at class extension. * object.c (obj_type): returns object's class even if it defines singleton methods. @@ -130,6 +130,7 @@ lib/net/ftp.rb lib/net/pop.rb lib/net/protocol.rb lib/net/smtp.rb +lib/net/telnet.rb lib/observer.rb lib/open3.rb lib/ostruct.rb @@ -129,7 +129,7 @@ You can redistribute it and/or modify it under either the terms of the GPL 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * Ruby home-page diff --git a/README.EXT b/README.EXT index cd0be84b56..90673661e9 100644 --- a/README.EXT +++ b/README.EXT @@ -881,7 +881,7 @@ Returns the name of the class. int rb_respond_to(VALUE object, ID id) -Returns true if the object reponds to the message specified by id. +Returns true if the object responds to the message specified by id. ** Instance Variables @@ -172,7 +172,7 @@ Public License)�ޤ��ϰʲ��˼��������ܥץ�����������ۤ� 4. ¾�Υץ������ؤΰ��ѤϤ����ʤ���Ū�Ǥ��켫ͳ�Ǥ����� �������ܥץ������˴ޤޤ��¾�κ�Ԥˤ�륳���ɤϡ��� - �줾��κ�Ԥΰո��ˤ�����¤��ä�����礬����ޤ��� + �줾��κ�Ԥΰո��ˤ�����¤��ä������礬����ޤ��� ����Ū�ˤ�gc.c(����)��util.c(����)��st.[ch]��regex.[ch] ����� ./missing�ǥ��쥯�ȥ겼�Υե����뷲���������ޤ��� @@ -1,4 +1,4 @@ -/************************************************ +/********************************************************************** array.c - @@ -7,8 +7,10 @@ created at: Fri Aug 6 09:46:12 JST 1993 Copyright (C) 1993-2000 Yukihiro Matsumoto + Copyright (C) 2000 Network Applied Communication Laboratory, Inc. + Copyright (C) 2000 Information-technology Promotion Agancy, Japan -************************************************/ +**********************************************************************/ #include "ruby.h" #include "util.h" @@ -276,8 +278,15 @@ rb_ary_push_m(argc, argv, ary) VALUE *argv; VALUE ary; { - while (argc--) { - rb_ary_store(ary, RARRAY(ary)->len, *argv++); + if (argc > 0) { + long len = RARRAY(ary)->len; + + --argc; + /* make rooms by copying the last item */ + rb_ary_store(ary, len + argc, argv[argc]); + + if (argc) /* if any rest */ + MEMCPY(RARRAY(ary)->ptr + len, argv, VALUE, argc); } return ary; } @@ -340,6 +349,26 @@ rb_ary_unshift(ary, item) return ary; } +static VALUE +rb_ary_unshift_m(argc, argv, ary) + int argc; + VALUE *argv; + VALUE ary; +{ + if (argc > 0) { + long len = RARRAY(ary)->len; + + /* make rooms by setting the last item */ + rb_ary_store(ary, len + argc - 1, Qnil); + + /* sliding items */ + MEMMOVE(RARRAY(ary)->ptr + argc, RARRAY(ary)->ptr, VALUE, len); + + MEMCPY(RARRAY(ary)->ptr, argv, VALUE, argc); + } + return ary; +} + VALUE rb_ary_entry(ary, offset) VALUE ary; @@ -980,6 +1009,27 @@ rb_ary_collect(ary) return collect; } +static VALUE +rb_ary_collect_bang(ary) + VALUE ary; +{ + long i; + + rb_ary_modify(ary); + for (i = 0; i < RARRAY(ary)->len; i++) { + RARRAY(ary)->ptr[i] = rb_yield(RARRAY(ary)->ptr[i]); + } + return ary; +} + +static VALUE +rb_ary_filter(ary) + VALUE ary; +{ + rb_warn("Array#filter is deprecated; use Array#collect!"); + return rb_ary_collect_bang(ary); +} + VALUE rb_ary_delete(ary, item) VALUE ary; @@ -1092,19 +1142,6 @@ rb_ary_delete_if(ary) } static VALUE -rb_ary_filter(ary) - VALUE ary; -{ - long i; - - rb_ary_modify(ary); - for (i = 0; i < RARRAY(ary)->len; i++) { - RARRAY(ary)->ptr[i] = rb_yield(RARRAY(ary)->ptr[i]); - } - return ary; -} - -static VALUE rb_ary_replace_m(ary, ary2) VALUE ary, ary2; { @@ -1195,17 +1232,9 @@ VALUE rb_ary_concat(x, y) VALUE x, y; { - VALUE *p, *pend; - - rb_ary_modify(x); Check_Type(y, T_ARRAY); - p = RARRAY(y)->ptr; - pend = p + RARRAY(y)->len; - while (p < pend) { - rb_ary_store(x, RARRAY(x)->len, *p); - p++; - } + rb_ary_push_m(RARRAY(y)->len, RARRAY(y)->ptr, x); return x; } @@ -1575,7 +1604,7 @@ Init_Array() rb_define_method(rb_cArray, "push", rb_ary_push_m, -1); rb_define_method(rb_cArray, "pop", rb_ary_pop, 0); rb_define_method(rb_cArray, "shift", rb_ary_shift, 0); - rb_define_method(rb_cArray, "unshift", rb_ary_unshift, 1); + rb_define_method(rb_cArray, "unshift", rb_ary_unshift_m, -1); rb_define_method(rb_cArray, "each", rb_ary_each, 0); rb_define_method(rb_cArray, "each_index", rb_ary_each_index, 0); rb_define_method(rb_cArray, "reverse_each", rb_ary_reverse_each, 0); @@ -1594,11 +1623,13 @@ Init_Array() rb_define_method(rb_cArray, "sort", rb_ary_sort, 0); rb_define_method(rb_cArray, "sort!", rb_ary_sort_bang, 0); rb_define_method(rb_cArray, "collect", rb_ary_collect, 0); + rb_define_method(rb_cArray, "collect!", rb_ary_collect_bang, 0); + rb_define_method(rb_cArray, "map!", rb_ary_collect_bang, 0); + rb_define_method(rb_cArray, "filter", rb_ary_filter, 0); rb_define_method(rb_cArray, "delete", rb_ary_delete, 1); rb_define_method(rb_cArray, "delete_at", rb_ary_delete_at_m, -1); rb_define_method(rb_cArray, "delete_if", rb_ary_delete_if, 0); rb_define_method(rb_cArray, "reject!", rb_ary_delete_if, 0); - rb_define_method(rb_cArray, "filter", rb_ary_filter, 0); rb_define_method(rb_cArray, "replace", rb_ary_replace_m, 1); rb_define_method(rb_cArray, "clear", rb_ary_clear, 0); rb_define_method(rb_cArray, "fill", rb_ary_fill, -1); @@ -1,4 +1,4 @@ -/************************************************ +/********************************************************************** bignum.c - @@ -6,7 +6,9 @@ $Date$ created at: Fri Jun 10 00:48:55 JST 1994 -************************************************/ + Copyright (C) 1993-2000 Yukihiro Matsumoto + +**********************************************************************/ #include "ruby.h" #include <math.h> @@ -1,4 +1,4 @@ -/************************************************ +/********************************************************************** class.c - @@ -8,7 +8,7 @@ Copyright (C) 1993-2000 Yukihiro Matsumoto -************************************************/ +**********************************************************************/ #include "ruby.h" #include "node.h" @@ -502,15 +502,30 @@ rb_undef_method(klass, name) rb_add_method(klass, rb_intern(name), 0, NOEX_UNDEF); } +#define SPECIAL_SINGLETON(x,c) if (obj == (x)) {\ + if (!FL_TEST(c, FL_SINGLETON)) {\ + c = rb_singleton_class_new(c);\ + rb_singleton_class_attached(c,obj);\ + }\ + return c;\ +} + VALUE rb_singleton_class(obj) VALUE obj; { VALUE klass; - if (rb_special_const_p(obj)) { + if (FIXNUM_P(obj) || SYMBOL_P(obj)) { rb_raise(rb_eTypeError, "can't define singleton"); } + if (rb_special_const_p(obj)) { + SPECIAL_SINGLETON(Qnil, rb_cNilClass); + SPECIAL_SINGLETON(Qfalse, rb_cFalseClass); + SPECIAL_SINGLETON(Qtrue, rb_cTrueClass); + rb_bug("unknown immediate %d", obj); + } + if (FL_TEST(RBASIC(obj)->klass, FL_SINGLETON)) { klass = RBASIC(obj)->klass; } @@ -1,4 +1,4 @@ -/************************************************ +/********************************************************************** compar.c - @@ -8,7 +8,7 @@ Copyright (C) 1993-2000 Yukihiro Matsumoto -************************************************/ +**********************************************************************/ #include "ruby.h" diff --git a/config.guess b/config.guess index 53ebbce1a9..20ad33d44f 100644 --- a/config.guess +++ b/config.guess @@ -969,6 +969,10 @@ EOF *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; + *:"Mac OS":*:*) + echo `uname -p`-apple-macos${UNAME_RELEASE} + exit 0 ;; + esac #echo '(No uname command or uname output not recognized.)' 1>&2 |