summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * lib/mkmf.rb (log_src, checking_for, create_header):nobu2003-07-231-0/+5
| | | | | | | Logging.message is printf like format. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/iconv/iconv.c (check_iconv): check if Iconv instance.nobu2003-07-231-0/+14
| | | | | | | | | | | | | * ext/iconv/iconv.c (iconv_convert): stringify argument. * ext/iconv/iconv.c (iconv_failure_initialize): limit inspect message. [ruby-dev:20785] * ext/iconv/iconv.c (rb_str_derive): share with original string if possible. [ruby-dev:20785] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * variable.c (rb_mod_const_missing): new method. [ruby-core:00441]matz2003-07-221-2/+19
| | | | | | | | | | | | | | | | * variable.c (rb_const_get_at): allow "const_missing" hook. * variable.c (rb_const_get_0): ditto. * eval.c (method_missing): rename from rb_undefined to clarify. * eval.c (ruby_finalize_0): update exit status if any of END proc raises SystemExit. [ruby-core:01256] * eval.c (rb_exec_end_proc): reduce rb_protect(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * MANIFEST (lib/cgi/session/pstore.rb, lib/yaml/baseemitter.rb): added.eban2003-07-221-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/tmpdir.rb: remove charcters after "\000" and regularize path.usa2003-07-221-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * numeric.c (num_equal): should not use rb_equal().matz2003-07-211-2/+2
| | | | | | | * object.c (rb_equal): back out the last change. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_equal): should return nil for non stringmatz2003-07-211-0/+7
| | | | | | | | | operand to conform comparable convention. [ruby-dev:20759] * object.c (rb_equal): preserve nil if "==" returns nil. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/tmpdir.rb: new library to get temporary directory path,matz2003-07-211-0/+9
| | | | | | | | | | | using GetTempPath on Win32 environment. * lib/tempfile.rb: now uses tmpdir.rb. * lib/cgi/session.rb, ib/drb/unix.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c: use StringValueCStr to retrieve paths to system calls.matz2003-07-201-0/+10
| | | | | | | | | | | * string.c (rb_string_value_cstr): check null byte in the string before retrieving C ptr. accessed via macro StringValueCStr. * file.c (sys_fail2): raise error for two operand system calls such as rename, link, symlink. (ruby-bugs PR#1047) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/zlib/zlib.c (gzfile_read_header): gz->z.input may be nil after ↵katsu2003-07-201-0/+5
| | | | | | finishing reading a gzip header. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_match2): add warning to "~string".matz2003-07-191-0/+8
| | | | | | | | | | [ruby-list:37751] * lib/net/ftp.rb (Net::FTP::open): takes block. suggested by Gavin Sinclair in [ruby-core:01237]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4105 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/xmlrpc: import.matz2003-07-191-0/+5
| | | | | | | | * eval.c (thgroup_add): should return group for terminated thread case. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * wince/stdlib.c: add bsearch().uema22003-07-191-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (thgroup_add): do not raise ThreadError on terminatedmatz2003-07-191-0/+5
| | | | | | | thread addition for compatibility. just warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/iconv/charset_alias.rb, ext/iconv/extconf.rb: make wrappernobu2003-07-181-0/+13
| | | | | | | | | | | | | | | script which maps charset names. [ruby-dev:20625] * ext/iconv/iconv.c (charset_map): charset name map. * ext/iconv/iconv.c (iconv_dfree): no exception while finalization. * ext/iconv/iconv.c (iconv_s_conv): new method Iconv.conv. [ruby-dev:20588] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/Win32API/lib/win32/registry.rb (Win32::Registry::Error):usa2003-07-181-0/+5
| | | | | | | inherit StandardError instead of SystemCallError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_attr): extra calls of method_added. [ruby-talk:76361]nobu2003-07-181-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (init_mkmf): clear $INSTALLFILES. [ruby-dev:20727]nobu2003-07-181-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (rm_f): use FileUtils.nobu2003-07-181-0/+16
| | | | | | | | | | | | | | | | | * lib/mkmf.rb (modified?): return mtime of the target if it exists and newer than times. * lib/mkmf.rb (install_files): add a current directory file even if it does not exist yet. * lib/mkmf.rb (configuration): do not add $LDFLAGS to DLDFLAGS. * ext/extmk.rb (extmake): check whether Makefile is newer than depend and MANIFEST. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (make_cmdvector): recognize quote within string.usa2003-07-181-0/+5
| | | | | | | based on Nobu's patch ([ruby-win32:450]). [ruby-talk:75853] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_f_missing): VCALL is called only for LOCAL_ID. nomatz2003-07-181-0/+8
| | | | | | | | | | check required. * parse.y (primary): pritmary:tFID generates NODE_FCALL. [ruby-dev:20641] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (match_captures): rename from "groups".matz2003-07-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_clear_cache_by_class): check both klass and origin.matz2003-07-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (ruby_init): set ruby_running to true aftermatz2003-07-171-0/+5
| | | | | | | initialization. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/ftools.rb (File::makedirs): do not handle "//" as a directory.eban2003-07-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_proc_new): call svalue_to_avalue for yield argument.matz2003-07-161-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_disable_super, rb_enable_super): deprecate.matz2003-07-161-0/+8
| | | | | | | | | * eval.c (thgroup_s_alloc): re-implement group struct. * eval.c (thgroup_add): add check for enclose and frozen status. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_add_method, rb_alias): need to clear cache bynobu2003-07-151-0/+6
| | | | | | | | ID when method defined in parent class is cached for grand child classes. [ruby-dev:20672] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/matrix.rb: remove elements conversion to_f, to_i, to_r.matz2003-07-151-2/+12
| | | | | | | | | * lib/cgi/session/pstore.rb: add new file. * process.c (proc_getgroups, proc_setmaxgroups): fix typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/rubyext.c (syck_mark_emitter): forgot to rb_gc_mark thewhy2003-07-141-0/+5
| | | | | | | outgoing IO object. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* commit missnobu2003-07-141-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * struct.c (struct_entry): add prototype to avoid VC++ warnings.usa2003-07-121-7/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/emitter.c: new emitter code.why2003-07-111-0/+16
| | | | | | | | | | | | | | | | | * ext/syck/rubyext.c: Emitter class. * lib/yaml.rb: Load Syck emitter, if available. * lib/yaml/stream.rb: ditto. * lib/yaml/baseemitter.rb: underlying class for all emitters. * lib/yaml/rubytypes.rb: use BaseEmitter abstraction. * lib/yaml/emitter.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* additionnobu2003-07-111-5/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (avalue_to_svalue): typo.nobu2003-07-111-0/+11
| | | | | | | | | | * eval.c (rb_load): rb_prohibit_interrupt should not underflow. * parse.y (NODE_STRTERM, tokadd_string, parse_string): moved string nest level from a static variable to NODE_STRTERM. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (aix): needs ruby.imp even with gcc.nobu2003-07-111-0/+5
| | | | | | | (ruby-bugs:PR#1007) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: typo fix.eban2003-07-111-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4061 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * instruby: do not handle directories. [ruby-dev:20613]eban2003-07-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * util.c (ruby_strtod): exp should be less than MDMAXEXPT.matz2003-07-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * math.c (math_log): nan takes a dummy argument on Cygwin 1.5.0.eban2003-07-101-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4055 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_load): put rb_load_file() in a thread criticalmatz2003-07-091-5/+31
| | | | | | | | | | | | | | | | | | | | | | | | section. [ruby-dev:20490] * eval.c (compile): put rb_compile_string() in a thread critical section. * variable.c (rb_const_get_0): should not warn if constant is not defined. (ruby-bugs-ja PR#509) * bignum.c (rb_big2dbl): give a warning on overflow. (ruby-bugs-ja PR#510) * util.c (ruby_strtod): change MDMAXEXPT from 511 to 308. * pack.c (utf8_to_uv): long is sufficient. LONG_LONG is not required. * bignum.c (rb_big2str): support 32 bit (without `long long' type) machines. (ruby-bugs-ja PR#512) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * regex.c (mbctab_sjis): 0x80 is not shift jis first byte.nobu2003-07-091-0/+5
| | | | | | | [ruby-dev:20516] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * mkconfig.rb: support text-mount on Cygwin.eban2003-07-091-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * instruby.rb: do not install shared libraries as man pages.eban2003-07-091-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (match_entry): add prototype to avoid VC++ warnings.usa2003-07-091-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_call_super): k->super maybe NULL if klass is Kernel.matz2003-07-071-0/+12
| | | | | | | | | | | | [ruby-dev:20519] * gc.c (obj_free): clear method cache when freeing class/module. * eval.c (rb_mod_remove_method): allow "remove_method" to accept multiple arguments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/dbm/extconf.rb (gdbm_compat, qdbm): add check for gdbm_compateban2003-07-071-0/+5
| | | | | | | and qdbm. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * node.h (NEW_NODE): cast arguments to rb_node_newnode().matz2003-07-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/rubyext.c, ext/syck/syck.c, ext/syck/syck.h,nobu2003-07-041-0/+6
| | | | | | | | ext/syck/token.c: C++ style comments are not allowed. (ruby-bugs:PR#1008) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Changelog, lib/debug.rb: fix typo.matz2003-07-031-3/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e