summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * configure.in (HUGE_ST_INO): check whether struct stat.st_inonobu2003-08-151-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | is larger than long. [ruby-dev:21194] http://www.geocities.co.jp/SiliconValley-PaloAlto/1409/ruby/beos.html * error.c (syserr_eqq): errno might exceed Fixnum limit. * error.c (Init_Exception): moved base initialization from init_syserr(). * inits.c (rb_call_inits): postpone initializing errnos until Bignum is available. * ext/curses/curses.c (_XOPEN_SOURCE_EXTENDED): needed to let keyname() and so on be declared. * ext/curses/curses.c (curses_resizeterm, window_resize): arguments conflicted with macros in term.h. * ext/curses/curses.c (Curses module methods): ensure initialized. [ruby-dev:21191] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (id2ref): recycle check should be done by klass == 0.matz2003-08-141-0/+21
| | | | | | | | | | | | | | | | | | | [ruby-core:01408] * eval.c (Init_Thread): Continuation#[] added. [ruby-talk:79028] * parse.y (mlhs_node): should allow "::Foo" (colon3) as lhs. * parse.y (lhs): ditto. * parse.y (yylex): should return tCOLON3 right after kCLASS. [ruby-talk:78918] * error.c (exc_initialize): was converting argument to string too eagerly. Only check was needed. [ruby-talk:78958] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Bug fix and addition of math.rb.shigek2003-08-141-1/+10
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (OLE_FREE): should not callsuke2003-08-141-0/+10
| | | | | | | | | | | | ole_message_loop. * ext/win32ole/win32ole.c (ole_event_free): ditto. * ext/win32ole/win32ole.c (ole_initialize): stop calling OleUninitialize at exit. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (rb_data_object_alloc): check type of 1st argument.usa2003-08-141-0/+5
| | | | | | | [ruby-dev:21192] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Ambiguity of BigDecimal::limit removed.shigek2003-08-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/webrick/https.rb (HTTPServer#run): should set syncing-modegotoyuzo2003-08-131-1/+6
| | | | | | | to SSLSocket. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4380 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (POP_BLOCK): turn on BLOCK_LEFT flag when leaving block.matz2003-08-131-0/+7
| | | | | | | | * eval.c (proc_invoke): unpack return/break destination when block is already left. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * object.c (rb_class_s_alloc): add function prototype to avoid VC++eban2003-08-131-0/+5
| | | | | | | warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/Win32API/Win32API.c (Win32API_initialize): should pass someusa2003-08-131-0/+5
| | | | | | | class to first argument of Data_Wrap_Struct(). (ruby-bugs PR#1109) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4376 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/extmk.rb (extmake): compact $extlibs.nobu2003-08-121-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4374 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in: static link libraries to LIBRUBY_SO with static linkednobu2003-08-121-0/+7
| | | | | | | | | ext. [ruby-dev:21157] * ext/extmk.rb (extmake): sort extension library initialization order. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (THREAD_SAVE_CONTEXT): should explicitly turn off thematz2003-08-111-0/+3
| | | | | | | flag before calling getcontext(2). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (struct thread): add member to save backing store onmatz2003-08-111-0/+15
| | | | | | | | | | | | | | | | | IA64. (ruby-bugs PR1086) * eval.c (thread_mark): mark IA64 backing store region. * eval.c (thread_free): free saved IA64 backing store. * eval.c (rb_thread_save_context): save IA64 backing store as well. * eval.c (rb_thread_restore_context): restore IA64 backing store. * eval.c (THREAD_ALLOC): initialize IA64 members. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/debug.rb(debug_command): inspection command should inspect resultingnahi2003-08-111-0/+7
| | | | | | | | | value even if it's nil. [ruby-dev:21180] by OMAE, jun <jun66j5@ybb.ne.jp>. * lib/debug.rb(debug_command): incomplete regexp. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_call_super): do not use rb_block_given_p() formatz2003-08-111-0/+7
| | | | | | | | | check. [ruby-talk:78656] * eval.c (BEGIN_CALLARGS): push ITER_NOT only when ITER_PRE. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/openssl/lib/openssl/buffering.rb: increase BLOCK_SIZEgotoyuzo2003-08-101-0/+8
| | | | | | | | | | from 1k to 16k bytes. [ruby-talk:78603] * ext/openssl/ossl_ssl.c (ossl_sslctx_s_alloc): enable partial write to allow interruption in SSLSocket#sysread. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cygwin/GNUmakefile: remove unnecessary '--drive-name=$(CC)'eban2003-08-091-0/+5
| | | | | | | for ccache. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (w_object): do not dump generic instance variable whenmatz2003-08-091-0/+5
| | | | | | | marshal_dump is defined. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Invalid date.shigek2003-08-081-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* F style output(like 1234.56789) implemented to to_s method.shigek2003-08-081-0/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (w_object): should set `c_arg' at first.matz2003-08-081-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bcc32/Makefile.sub: rubyw.exe should be a Windows GUI program.eban2003-08-081-0/+5
| | | | | | | add the -aa option to WLDFLAGS. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/webrick/httputils.rb (FormData#list): should not takegotoyuzo2003-08-071-0/+5
| | | | | | | a side effect for the receiver. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cygwin/GNUmakefile: add forwarding DLL target for cygwin.eban2003-08-071-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cygwin/GNUmakefile: better --disbale-shared option support.eban2003-08-071-0/+10
| | | | | | | | | * configure.in: Fix Cygwin specific naming of libraries to be net distribution compliant. (ruby-bugs PR#1077) cygwin-ruby18.dll -> cygruby18.dll git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4350 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_f_at_exit): should not be called without a block.matz2003-08-071-0/+5
| | | | | | | block_given check added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_call0): forgot to pop ruby_class.matz2003-08-061-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_call0): update ruby_class as well as ruby_cref.matz2003-08-061-0/+50
| | | | | | | | | | | | (ruby-bugs-ja PR#540) * eval.c (rb_yield_0): remove ruby_frame->cbase and unify to ruby_cref. [ruby-talk:78141] * eval.c: initialize /* OK */ variables by Qnil to stop warnings. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c: FreeBSD/ia64's mcontext_t is a bit different from that ofknu2003-08-061-0/+6
| | | | | | | | Linux/ia64. This makes gc.c compile but miniruby coredumps for the moment. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* BigDecimal change.shigek2003-08-061-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4342 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/testcase.rb: Added equality checking.ntalbott2003-08-061-0/+6
| | | | | | | | * lib/test/unit/testsuite.rb: Added equality checking. * lib/test/unit/assertions.rb: Fixed a warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (have_library): treat nil function name as "main".nobu2003-08-061-3/+3
| | | | | | | (ruby-bugs:PR#1083) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/extmk.rb (extmake): pass LIBPATH to make ruby. [ruby-dev:21137]nobu2003-08-061-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | * ext/extmk.rb (extmake): set library name as source file name in Init_ext(). [ruby-dev:21137] * lib/mkmf.rb (Logging::postpone): postpone logging messages after heading message as the result of the block. * lib/mkmf.rb (macro_defined?): append newline to src unless ended with it. * lib/mkmf.rb (have_library): allow nil function name to just append a library. (ruby-bugs:PR#1083) * lib/mkmf.rb (pkg_config): should append additional libraries to $libs but not $LIBS. [ruby-dev:21137] * ext/io/wait/extconf.rb: check DOSISH macro instead of platform. * ext/digest/sha1/extconf.rb: have_library already appends library name. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/Setup*: add io/wait and openssl.usa2003-08-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4336 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb: update document.aamine2003-08-051-0/+8
| | | | | | | | * lib/net/pop.rb: ditto. * lib/net/protocol.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/shell/command-processor.rb (Shell::CommandProcessor::rmdir):matz2003-08-051-0/+9
| | | | | | | | | simple typo. * string.c (str_new4): ptr may refer null_str. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/fileutils.rb (install): should preserve timestamp only.eban2003-08-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_load): should preserve current source file/line.nobu2003-08-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4325 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * doc/NEWS, doc/ChangeLog-1.8.0: added.matz2003-08-041-23858/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (method_proc): should specify YIELD_FUNC_SVALUE.matz2003-08-041-0/+8
| | | | | | | | | | [ruby-dev:21107] * marshal.c (w_object): should not call w_extended for USRMARSHAL dump. [ruby-dev:21106] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4314 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/ui/console/testrunner.rb: Flushed io in thematz2003-08-041-0/+5
| | | | | | | Console::TestRunner so that it will output immediately. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * util.h: remove unnecessary parentheses. [ruby-dev:20879]nobu2003-08-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4311 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb (receive_responses): raise exception toshugo2003-08-041-0/+5
| | | | | | | client_thread. Thanks to William Webber. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb: convert RD to RDoc.shugo2003-08-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_utime): never use utime() of C runtime.usa2003-08-031-0/+5
| | | | | | | [ruby-talk:77782] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_call_super): should propagate previous block fornobu2003-08-031-0/+5
| | | | | | | super call. [ruby-talk:77884] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4305 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/scanf.rb: import. [back-dated to July 19]dblack2003-08-031-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (call_trace_func): clear exception flag temporarily.nobu2003-08-031-0/+5
| | | | | | | [ruby-dev:21090] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/un.h (help): new. % ruby -run -e help cpeban2003-08-031-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e