summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * vm_eval.c (rb_catch_obj, rb_catch, rb_f_catch): No longer use the obsolete ↵marcandre2009-09-151-0/+5
| | | | | | function rb_iterate. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (--enable-frame-address): removed.akr2009-09-151-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/{configure.bat,Makefile.sub} (RDOCTARGET): the meaning of thisusa2009-09-151-0/+5
| | | | | | | | macro was changed at r24923. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (install-rdoc), configure.in (RDOCTARGET): removednobu2009-09-151-0/+5
| | | | | | | circular dependency. [ruby-dev:39339] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/configure.bat: need a space before a tab to output the tab byusa2009-09-151-0/+5
| | | | | | | | echo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Use rb_isspace for ASCII-incompatible strings.naruse2009-09-151-0/+9
| | | | | | | | | * string.c (rb_str_split_m): use rb_isspace when the string may be ASCII-incompatible. (rb_str_lstrip_bang): ditto. (rb_str_rstrip_bang): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (RUBY_USE_BUILTIN_FRAME_ADDRESS): check after realnobu2009-09-151-1/+4
| | | | | | | target CPU is set. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (RUBY_UNIVERSAL_ARCH): check real target CPU afternobu2009-09-151-0/+5
| | | | | | | AC_PROG_CC. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/rbinstall.rb (parse_args): show help message and exit ifnobu2009-09-141-1/+4
| | | | | | | rbconfig could not load. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (install-all): target to install all.nobu2009-09-141-0/+6
| | | | | | | * tool/rbinstall.rb (parse_args): accept all install targets. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (RDOCTARGET): use install-all. [ruby-dev:39334]nobu2009-09-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_lstrip_bang): use ascii_isspace(). [ruby-dev:39322]matz2009-09-141-0/+8
| | | | | | | | * string.c (rb_str_rstrip_bang): ditto. * string.c (rb_str_split_m): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * debug.c, parse.y: fixed types.nobu2009-09-141-0/+6
| | | | | | | * node.h (nd_line): limit to int. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in, common.mk, */configure.bat (rdoc): make beforenobu2009-09-141-0/+5
| | | | | | | install if rdoc is enabled. [ruby-dev:39325] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (check-ruby): run all test of ruby itself.nobu2009-09-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (RB_TYPE_P): should not use BUILTIN_TYPE fornobu2009-09-141-0/+5
| | | | | | | special constants. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_inspect): use rb_enc_mbc_to_codepointnaruse2009-09-141-0/+5
| | | | | | because we already knew char is found and got length. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (NUM2INT, NUM2LL, INT2NUM, UINT2NUM),usa2009-09-141-0/+6
| | | | | | | | | (LONG2NUM, ULONG2NUM, NUM2CHR): get rid of backward references of macros. the code couldn't compile by VC. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb (each_*): return enumerator if no block present. Patch by ↵marcandre2009-09-131-0/+5
| | | | | | Arthur Schreiber [ruby-core:18310] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/cgi/cookie.rb (value): Keep CGI::Cookie#value in sync with the cookie ↵marcandre2009-09-131-0/+5
| | | | | | itself. Based on a patch by Arthur Schreiber [ruby-core:17634] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb (fetch): Handle properly default values; a patch by Arthur ↵marcandre2009-09-131-0/+5
| | | | | | Schreiber [ruby-core:18308] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/set.rb (==): Optimization; patch by Arthur Schreiber [ruby-core:17203]marcandre2009-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * symbian/pre-build: added rule to generate id.h for Symbian build.azav2009-09-131-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * variable.c (rb_mod_remove_const): do not change VM state when annobu2009-09-131-0/+5
| | | | | | | exception will occur. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24903 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (oletypelib_get_libattr): some refactoringsuke2009-09-131-0/+5
| | | | | | | | | | | | by adding oletypelib_get_libattr -This line, and those below, will be ignored-- M ChangeLog M ext/win32ole/win32ole.c git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (oletypelib_get_typelib): some refactoringsuke2009-09-131-0/+5
| | | | | | | | by adding oletypelib_get_typelib. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (process_sflag, proc_options, load_file_internal): fixednobu2009-09-131-0/+5
| | | | | | | types. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24899 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ext/win32ole/win32ole.c: some refactoring.suke2009-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (load_file_internal): no need to define DATA when error.nobu2009-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (XLDFLAGS): link startup code with ObjC support.nobu2009-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24894 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * thread.c (thread_list_access): prototyped.nobu2009-09-131-3/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24892 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * thread.c (recursive_*): refactored the access to the inspect table used bymarcandre2009-09-131-0/+6
| | | | | | | rb_exec_recursive_*. The functions recursive_push, pop and check now assume a valid hash table as their first argument. Added documentation. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (SYM2ID): needs parens.nobu2009-09-131-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (NUM2INT, NUM2LL, INT2NUM, UINT2NUM),nobu2009-09-131-0/+6
| | | | | | | | (LONG2NUM, ULONG2NUM, NUM2CHR, rb_type_p, rb_special_const_p): GCC specific optimization. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (OpenURI::Meta#content_type_parse): strip quotes.akr2009-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/prime.rb (EratosthenesGenerator#initialize): call super.nobu2009-09-131-0/+5
| | | | | | | (TrialDivisionGenerator, Generator23): ditto. [ruby-core:25539] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (rb_add_method_def): no warning for inheritednobu2009-09-131-0/+5
| | | | | | | method. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c: fix WIN32OLE_TYPELIB.new when the 1st suke2009-09-121-0/+5
| | | | | | | argument is the non-registered file. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_core.h: change members of iseq_inline_cache_entry.ko12009-09-121-0/+9
| | | | | | | | | | make cache value members to one union member "ic_value". * insns.def: ditto. * vm_insnhelper.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24881 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (URI::FTP#buffer_open): fix the %2F handling.akr2009-09-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24875 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (CALL_METHOD_HOOK): refined with macro.nobu2009-09-121-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (rb_remove_method_id): no definition body isnobu2009-09-121-1/+4
| | | | | | | undefined. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (rb_alias): hooks are called from rb_add_method_def.nobu2009-09-121-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24868 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_method.c (rb_add_method, rb_add_method_me): call method addednobu2009-09-121-0/+5
| | | | | | | hook after definition. [ruby-core:25536] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (URI::FTP#buffer_open): use the port specified inakr2009-09-121-0/+5
| | | | | | | the URI. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (GCC): subst for GCC depending extension libraries.nobu2009-09-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (EVENTSINK_Invoke): initialize resultsuke2009-09-111-0/+5
| | | | | | | variant value. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * NEWS: update for 1.9.2. based on a patch from Run Paint Run Runnobu2009-09-111-2/+7
| | | | | | | in [ruby-core:25534]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: commit miss.nobu2009-09-111-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24852 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/config.{guess,sub}: better guess on darwin 10 .nobu2009-09-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24851 b2dd03c8-39d4-4d8f-98ff-823fe69b080e