aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use conssitent documentation about repository [ci skip]Takashi Kokubun2019-05-212-3/+3
| | | | | | | This unifies our explanation with https://github.com/ruby/www.ruby-lang.org/pull/2069 Co-authored-by: OKURA Masafumi <masafumi.o1988@gmail.com>
* Remove ~/.inputrc not found error messageaycabta2019-05-211-1/+0
|
* Copy config to make IRB::Context#use_colorize? functionalTakashi Kokubun2019-05-212-0/+5
| | | | | | on initialize This fixes https://github.com/ruby/ruby/pull/2188
* Symbol beginning token may take a constant tokenaycabta2019-05-211-1/+1
|
* Cursor should be at line head after line breakingaycabta2019-05-211-0/+1
|
* IRB should eval and show an error when only `.` is inputtedaycabta2019-05-211-1/+7
|
* re-skip tests of GC.compact.Koichi Sasada2019-05-211-0/+2
|
* Support DEL keyaycabta2019-05-213-2/+35
|
* enable test for GC.compact to reproduce an issue on CIKoichi Sasada2019-05-211-2/+0
|
* unify normal and verify ver.Koichi Sasada2019-05-211-50/+58
|
* do not use RARRAY_SET() directly in array.c.Koichi Sasada2019-05-211-2/+10
|
* Fix typoNobuyoshi Nakada2019-05-211-1/+1
|
* Do not modify shared arrayNobuyoshi Nakada2019-05-212-2/+12
| | | | [Bug #15821]
* Simplified the guard against old versionsNobuyoshi Nakada2019-05-211-5/+2
|
* Add "require 'irb'" to use IRB.confaycabta2019-05-211-0/+1
|
* Check whether IRB.conf is nil in IRB::WorkSpace#code_around_bindingaycabta2019-05-211-2/+6
|
* Add --colorize and --nocolorize options to IRBaycabta2019-05-218-4/+28
|
* Fix vertical cursor moving when splitting lineaycabta2019-05-211-1/+2
|
* Finish only when buffer contains non-blank lineaycabta2019-05-211-1/+3
|
* Cursor up should reduce 1 than editing heightaycabta2019-05-211-4/+4
|
* * 2019-05-21git2019-05-211-1/+1
|
* Check bytesize in vi command mode last char backaycabta2019-05-211-3/+7
|
* * expand tabs.git2019-05-201-15/+15
|
* Get rid of undefined behavior that source and destination buffers overlapNobuyoshi Nakada2019-05-201-35/+42
|
* Remove redundant ignore rule for Process#clock_getres specsBenoit Daloze2019-05-201-7/+0
|
* Move exclusion for Hyper-V next to other skipped constantsBenoit Daloze2019-05-202-6/+9
|
* skip a test for CLOCK_MONOTONIC_RAW.Koichi Sasada2019-05-201-1/+6
| | | | | | | | | | | | | On my Linux guest machine on Hyper-V, I got an error. Process.clock_gettime(CLOCK_MONOTONIC_RAW, :nanosecond) returns like: ... 875573945119100 875573945119600 ... even if `Process.clock_getres(value, :nanosecond)` returns 1. So I simply skip this test for CLOCK_MONOTONIC_RAW.
* Mixed encoding error can continue to parseNobuyoshi Nakada2019-05-201-1/+1
|
* Cursor can't move to eol when vi command modeaycabta2019-05-201-1/+9
|
* * 2019-05-20git2019-05-201-1/+1
|
* Readline.completion_proc accepts US-ASCIIaycabta2019-05-201-1/+3
|
* Update test-unitNobuyoshi Nakada2019-05-191-1/+1
|
* * 2019-05-19git2019-05-191-1/+1
|
* Touch the timestamp file for Unicode filesNobuyoshi Nakada2019-05-191-0/+1
|
* [DOC] Shorten examples for Time#{round,floor}Marcus Stollsteimer2019-05-181-12/+0
|
* [DOC] Improve documentation for Time#floorMarcus Stollsteimer2019-05-181-4/+2
| | | | Use numbers that are more illustrative for #floor.
* [DOC] Use '&&' instead of 'and' in boolean expressionMarcus Stollsteimer2019-05-181-9/+9
|
* [DOC] Improve documentation for Enumerator::LazyMarcus Stollsteimer2019-05-181-12/+12
|
* Rename rb_gc_new_location to rb_gc_locationAaron Patterson2019-05-186-27/+27
| | | | | The function will return new or existing locations depending on whether or not the object actually moved, so give it a more appropriate name.
* Add fall through comment for Coverity ScanKazuhiro NISHIYAMA2019-05-181-0/+1
|
* Add Reline.test_mode to use with special I/Oaycabta2019-05-183-11/+32
|
* skip a test to pass CIs.Koichi Sasada2019-05-181-0/+1
| | | | | I'm debugging [Bug #15821] but my patch introduces another issue. So I simply skip this test and re-enable it later.
* Add test for UNTILNobuyoshi Nakada2019-05-181-0/+12
|
* Update include files on msys2 tooNobuyoshi Nakada2019-05-181-1/+2
|
* Get rid of always updating Unicode filesNobuyoshi Nakada2019-05-181-1/+6
| | | | [Misc #15859]
* Distinguish pre-condition and post-condition loopsNobuyoshi Nakada2019-05-182-1/+14
|
* * 2019-05-18git2019-05-181-1/+1
|
* Remove parent namespace from Readline test classesaycabta2019-05-181-5/+5
| | | | | | The namespace "Readline" doesn't exist when running tests if readline.so doesn't exist and Reline exists. So test classes shouldn't be at nested namespaces under "Readline".
* Prevent Dynamic -> Static symbols from movingAaron Patterson2019-05-171-1/+4
| | | | | | | | If a dynamic symbol has been converted to a static symbol, it gets added to the global ID list and should no longer move. C extensions can pass symbols to rb_sym2id and those symbols should no longer be movable. When the symbol is passed to rb_sym2id, the `id` member is set, so we can use its existence to prevent movement.
* Do not export InitVM functionsNobuyoshi Nakada2019-05-171-1/+1
|