| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-03 | remove Exception#verbose_backtrace; #1495 | Yukihiro "Matz" Matsumoto | |
| 2013-09-03 | fix line number after first file | take_cheeze | |
| 2013-09-03 | improve checkings in debug.c | take_cheeze | |
| 2013-09-02 | don't use RArray in filename table generating | take_cheeze | |
| 2013-09-02 | declare variable outside for | take_cheeze | |
| 2013-09-02 | better line type selector | take_cheeze | |
| 2013-09-02 | rename debug function name | take_cheeze | |
| 2013-09-02 | reduce node size | take_cheeze | |
| 2013-09-02 | use uint16_t for line type | take_cheeze | |
| 2013-09-02 | support multiple filename in irep | take_cheeze | |
| 2013-09-02 | print singleton class name in verbose backtrace | take_cheeze | |
| 2013-09-02 | add verbose_backtrace | take_cheeze | |
| 2013-09-02 | fix crash in 2nd call to vsnprintf | take_cheeze | |
| 2013-08-31 | revert #1470; fix #1493 | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | Merge branch 'mruby' into pr-typeerror-string-start-end-with | Tomoyuki Sahara | |
| Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb | |||
| 2013-08-26 | Merge pull request #1487 from h2so5/z-option-with-shared-string | Yukihiro "Matz" Matsumoto | |
| Fix a problem of 'z' option and shared string | |||
| 2013-08-26 | do not use mrb_alloca() that keeps memory until mrb_state freed | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | add cast to void* | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | undef print_backtrace_i() unless ENABLE_STDIO | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | Merge branch 'get-backtrace' of https://github.com/wanabe/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| wanabe-get-backtrace | |||
| 2013-08-25 | add Exception#backtrace | wanabe | |
| 2013-08-24 | Fix a problem of 'z' option and shared string | h2so5 | |
| 2013-08-23 | add mrb_string_type(). | Tomoyuki Sahara | |
| 2013-08-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-18 | remove unnecessary return | Yukang | |
| 2013-08-15 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | Fix return block argument error | Carson McDonald | |
| 2013-08-15 | remove Class#alloc method | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | redesign mruby/data.h API; use DATA_PTR() for raw data pointer, ↵ | Yukihiro "Matz" Matsumoto | |
| DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched | |||
| 2013-08-15 | implement Class.new in C again | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | check d->type before accessing d->type->dfree; #1474 #858 | Yukihiro "Matz" Matsumoto | |
| 2013-08-14 | longjmp too far when exception raised from C function called from mrb_funcall() | Yukihiro "Matz" Matsumoto | |
| 2013-08-13 | Merge pull request #1472 from JackDanger/jackdanger/add-line-numbers-to-irb | Yukihiro "Matz" Matsumoto | |
| Adding line numbers to the output of mirb. | |||
| 2013-08-13 | Merge pull request #1470 from carsonmcdonald/morefixfor1467 | Yukihiro "Matz" Matsumoto | |
| Tests and another fix for issue #1467 | |||
| 2013-08-13 | Adding line numbers to the output of mirb. | Jack Danger Canty | |
| Before: > "hi" hi > d (mirb):1: undefined method 'd' for main (NoMethodError) > d (mirb):1: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 1: unterminated string meets end of file After > "hi" hi > d (mirb):2: undefined method 'd' for main (NoMethodError) > d (mirb):3: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 5: unterminated string meets end of file | |||
| 2013-08-13 | This check and class change is redundant because it is done in ↵ | Carson McDonald | |
| class.c#mrb_include_module | |||
| 2013-08-13 | Remove debug printf | Carson McDonald | |
| 2013-08-14 | ci->target_class should point to ICLASS, not MODULE; close #1467 | Yukihiro "Matz" Matsumoto | |
| 2013-08-13 | define Class#new in ruby to call #initialize | Yukihiro "Matz" Matsumoto | |
| 2013-08-12 | fix #1459 | fleuria | |
| gen_vmassignment() missed a pop() in a conditional branch, but we have to keep each conditional branch 's stack depth the same all the time when it left execution. | |||
| 2013-08-11 | Merge pull request #1458 from suzukaze/fix-iso-no-in-string-class | Yukihiro "Matz" Matsumoto | |
| I fix ISO no in String class in comparison with ISO_IEC_30170_2012(E) | |||
| 2013-08-11 | I fix ISO No in String class in comparison with ↵ | Jun Hiroe | |
| ISO_IEC_30170_2012(E)-Charactor_PDF_document.pdf | |||
| 2013-08-09 | Merge pull request #1450 from Fleurer/cleanup-warninigs | Yukihiro "Matz" Matsumoto | |
| clean up the warnings when GC_PROFILE is set | |||
| 2013-08-09 | def statement and define_method now return symbol a la Ruby2.1 | Yukihiro "Matz" Matsumoto | |
| 2013-08-09 | clean up the warnings when GC_PROFILE is on | fleuria | |
| 2013-08-09 | remove duplicated incremental_gc_until() in generational GC; #1449 | Yukihiro "Matz" Matsumoto | |
| 2013-08-09 | add comments for major GC | fleuria | |
| 2013-08-09 | parse.y: fixed bison 3.0 warning | Cremno | |
| YACC src/parse.y -> build/host/src/y.tab.c src/parse.y:936.1-12: warning: deprecated directive, use ‘%pure-parser’ [-Wdeprecated] %pure_parser | |||
| 2013-08-08 | finish half-baked GC cycle before starting full GC; #1447 | Yukihiro "Matz" Matsumoto | |
| 2013-08-08 | allow turning off GC generational mode by default by ↵ | Yukihiro "Matz" Matsumoto | |
| MRB_GC_TURN_OFF_GENERATIONAL; #1447 | |||
