summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * lib/rss/maker.rb (RSS::Maker.[]): add.kou2008-12-102-5/+17
| | | | | | | Suggested by Akinori MUSHA. Thanks!!! [ruby-dev:37210] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enumerator.c (enumerator_rewind): If the enclosed objectknu2008-12-102-0/+12
| | | | | | | responds to a "rewind" method, call it; cf. [ruby-dev:37268] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enumerator.c (enumerator_next): Fix a typo: s/rewinded/rewound/.knu2008-12-103-2/+8
| | | | | | | * lib/prime.rb (Prime::OldCompatibility#each): Ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (rb_reg_initialize): raise RegexpError when encodingnaruse2008-12-102-0/+10
| | | | | | is dummy encoding. [ruby-dev:37091] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-12-10svn2008-12-091-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (win32.obj): depend on headers.usa2008-12-092-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enc/trans/single_byte.trans, cp850-tbl.rb, cp852-tbl.rb,duerst2008-12-099-32/+915
| | | | | | | | | | | cp855-tbl.rb, koi8-r-tbl.rb, koi8-u-tbl.rb, tis-620-tbl.rb: new single-byte transcodings (from Yoshihiro Kambayashi) * test/ruby/test_transcode.rb: added tests for the above (from Yoshihiro Kambayashi), small cosmetic fixes git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_core.h: removed trailing garbage spaces.nobu2008-12-091-5/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * id.h, include/ruby/{intern,oniguruma}.h, regenc.h, regparse.h,nobu2008-12-0916-19/+19
| | | | | | | template/*.tmpl: removed trailing garbage spaces. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/curses/curses.c: removed trailing spaces.nobu2008-12-091-31/+31
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/curses/curses.c: made indentation consistent.nobu2008-12-091-189/+189
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * compile.c (iseq_compile_each), gc.c (assign_heap_slot),nobu2008-12-0910-34/+44
| | | | | | | | | | | | | (gc_mark_children), parse.y (vtable_alloc, vtable_free, vtable_add), proc.c (proc_to_s), thread.c (terminate_i, rb_thread_terminate_all), (thread_start_func_2, blocking_region_begin, blocking_region_end), (rb_thread_kill), thread_pthread.c (native_thread_create), (ubf_pthread_cond_signal), vm.c (check_env, thread_free), vm_dump.c (vm_env_dump_raw, vm_stack_dump_each, vm_thread_dump_state), (vm_call0): use void pointer for %p. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/curses/curses.c (curses_use_default_colors): add newmatz2008-12-093-1/+54
| | | | | | | | | | | method. a patch from Giancarlo F Bellido <support at coaxialhost.com> in [ruby-core:20434]. * ext/curses/curses.c (curses_tabsize_set): ditto. * ext/curses/curses.c (curses_tabsize_get): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cont.c (fiber_status), template/insns.inc.tmpl (ruby_vminsn_type),nobu2008-12-094-5/+8
| | | | | | | | vm_insnhelper.h (BOP): ISO C forbids comma at end of enumerator list. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm_insnhelper.c (check_cfunc): use function pointer.nobu2008-12-092-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * .gdbinit (rp): fixed typo for T_STRUCT.nobu2008-12-092-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * pack.c (pack_pck): fixed [ruby-dev:37295].yugui2008-12-092-2/+10
| | | | | | | Array#pack always has returned an US-ASCII string when the given format ended with 'u', 'M' or 'm'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * mkconfig.rb: fix for continued lines. based on a patch fromnobu2008-12-082-6/+10
| | | | | | | Marcus Rueckert <darix AT opensu.se> at [ruby-core:20420]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2008-12-081-2/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_make_exception): single argument to raise may bematz2008-12-082-3/+8
| | | | | | string compatible object. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/bigdecimal/bigdecimal.c (BigDecimal_truncate): returnmatz2008-12-082-0/+18
| | | | | | | | | | integer if no optional argument given. [incompatible] * ext/bigdecimal/bigdecimal.c (BigDecimal_floor): ditto. * ext/bigdecimal/bigdecimal.c (BigDecimal_ceil): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/make-snapshot (package): enc.mk in snapshot is dummy and shouldnobu2008-12-082-0/+13
| | | | | | | not deal with objects. [ruby-core:20422] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20583 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enc/depend (clean-srcs): split out from clean.nobu2008-12-084-6/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * pack.c (pack_pack): fixed odd act of 'm*', 'M*', and 'P*'.yugui2008-12-082-1/+9
| | | | | | | | just ignores '*' in these cases. [ruby-dev:37289] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * pack.c (pack_pack): fixed length for odd length string.nobu2008-12-083-2/+19
| | | | | | | [ruby-dev:37283] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (proc_options): added version, copyright, usage, yydebug,nobu2008-12-082-43/+67
| | | | | | | syntax to --dump option. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (proc_options): source-encoding option.nobu2008-12-081-0/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (set_option_encoding_once): dry.nobu2008-12-083-34/+46
| | | | | | | * ruby.c (proc_options): checks extra argument for -E/--encoding. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (LIBPATHFLAG): commit miss.nobu2008-12-071-6/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (LIBPATHFLAG): use numbered specifier if RPATHFLAGnobu2008-12-072-2/+11
| | | | | | | is set. [ruby-talk:322136] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in (LIBRUBY_SO): localizes non-public symbols.nobu2008-12-073-1/+14
| | | | | | | * configure.in (OBJDUMP, OBJCOPY): for dealing with binary files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2008-12-071-0/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2008-12-071-0/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open3.rb (Open3.capture3): renamed from Open3.poutput3.akr2008-12-073-31/+37
| | | | | | | | (Open3.capture2): renamed from Open3.poutput2. (lOpen3.capture2e): renamed from Open3.poutput2e. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20569 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-12-07svn2008-12-071-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open3.rb (Open3.poutput3): :binmode option implemented.akr2008-12-072-6/+68
| | | | | | | | (Open3.poutput2): ditto. (Open3.poutput2e): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* update rdoc.akr2008-12-061-14/+24
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * tool/make-snapshot (package): added RM and CP. [ruby-dev:37288]nobu2008-12-063-1/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * pack.c (pack_pack): 'u0' is not special differently from 'm0'.yugui2008-12-063-1/+9
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * pack.c (pack_pack): set US-ASCII and CODERANGE_7BITnaruse2008-12-062-0/+12
| | | | | | | | | when quoted-printable ('M') and base64 ('m'). [ruby-dev:37284] * pack.c (pack_unpack): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2008-12-061-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20561 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2008-12-06svn2008-12-051-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc udpate.akr2008-12-051-20/+37
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * rational.c (nurat_{to_s,inspect}): performance improvement.tadf2008-12-052-9/+27
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * complex.c: inpsect should not depend on to_s.tadf2008-12-052-4/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix for 1.8'sxibbar2008-12-051-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open3.rb (Open3.pipeline_start): new method.akr2008-12-053-28/+166
| | | | | | | (Open3.pipeline): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* rdoc update.akr2008-12-051-27/+37
| | | | | | | | prefer :in over STDIN because STDIN.fileno may changed if STDIN.instance_eval { initialize 1 }. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20543 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c (run_exec_dup2): !save is false if Qnil.akr2008-12-052-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_read, rb_w32_write, rb_w32_isatty): checkusa2008-12-052-0/+17
| | | | | | | | whether fd is valid. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20539 b2dd03c8-39d4-4d8f-98ff-823fe69b080e