| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-08 | Use `_Static_assert` when C11 is available and use it in pointer size check. | take_cheeze | |
| 2014-06-08 | do not ignore negative characters (e.g. EOF and partial EOF); fix #2361 fix ↵ | Yukihiro "Matz" Matsumoto | |
| #2369 | |||
| 2014-06-08 | revert #2368 due to #2369 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | move String#clear to mruby-string-ext; ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | move STR_* macros to mruby/string.h with renaming | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | clear shared and nofree flags; ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | inline str_discard(); ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | Implement String#clear | Jun Hiroe | |
| 2014-06-06 | Treat partial hook success '\n' to fix #2361 . | take_cheeze | |
| Now it will parse the #2361 code as: ``` module A end module B end ``` instead of ``` module A end module B end ``` | |||
| 2014-06-06 | Merge pull request #2359 from take-cheeze/src_gen_dep | Yukihiro "Matz" Matsumoto | |
| Add generator script to dependency so that it will regenerate C codes when it's modified. | |||
| 2014-06-06 | Merge branch 'ascii' of https://github.com/cremno/mruby into cremno-ascii | Yukihiro "Matz" Matsumoto | |
| 2014-06-05 | use uppercase US-ASCII ctype macros | cremno | |
| 2014-06-05 | don't (re-)define `ascii_isspace` and `isascii` | cremno | |
| `ISSPACE` and `ISASCII` can be used instead. | |||
| 2014-06-05 | `ISSPACE` evaluates its argument multiple times | cremno | |
| 2014-06-06 | Release `mrb->atexit_stack` on `mrb_close`. | take_cheeze | |
| 2014-06-06 | move IS_EVSTR macro that should be private to src/string.c | Yukihiro "Matz" Matsumoto | |
| 2014-06-05 | Merge branch 'atexit' of https://github.com/take-cheeze/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| take-cheeze-atexit | |||
| 2014-06-05 | update Kernel#raise/fail argument description | Yukihiro "Matz" Matsumoto | |
| 2014-06-04 | Add generator script to dependency so that it will regenerate C codes when ↵ | take_cheeze | |
| it's modified. | |||
| 2014-06-04 | mark pre-allocated exception | Yukihiro "Matz" Matsumoto | |
| 2014-06-04 | indent ISO section comments | Yukihiro "Matz" Matsumoto | |
| 2014-06-04 | use pre-allocated RuntimeError for out-of-memory | Yukihiro "Matz" Matsumoto | |
| 2014-06-02 | Implement `NoMethodError#args`. | take_cheeze | |
| 2014-06-02 | Change to always use locals->car->car. | yui-knk | |
| When p->locals->car is not NULL and p->locals->car->car is NULL, local_add_f dose not append sym to p->locals->car->car. This commit change to append sym to p->locals->car->car. This will close #2333. | |||
| 2014-06-01 | Merge pull request #2341 from yui-knk/remove-space | Yukihiro "Matz" Matsumoto | |
| Remove space. | |||
| 2014-06-01 | Fix indent. | yui-knk | |
| 2014-06-01 | Remove space. | yui-knk | |
| 2014-05-31 | Fix typos in gc | katmutua | |
| 2014-05-31 | Remove space. | yui-knk | |
| 2014-05-31 | Fix to not print unnecessary comma. | yui-knk | |
| When `n2->car` is 0 and `n2->cdd` is not 0, unnecessary comma was printed before first local variables. | |||
| 2014-05-30 | add internal function mrb_toplevel_run_keep() to keep stack contents; close ↵ | Yukihiro "Matz" Matsumoto | |
| #2326 | |||
| 2014-05-28 | Fix invalid array initialize for VS2012 | bggd | |
| 2014-05-27 | fix indent. | yui-knk | |
| 2014-05-23 | Should not call inherited method | ksss | |
| when class nothing | |||
| 2014-05-22 | call Class#initialize from Class.new; ref ISO 15.2.3.3.1 | Yukihiro "Matz" Matsumoto | |
| 2014-05-22 | allocate object after mrb_get_args() | Yukihiro "Matz" Matsumoto | |
| 2014-05-22 | Merge pull request #2304 from ksss/class-new | Yukihiro "Matz" Matsumoto | |
| Class.new do not call `class_eval' | |||
| 2014-05-22 | Merge pull request #2303 from ksss/module-initialize | Yukihiro "Matz" Matsumoto | |
| Module#initialize set created object for block argument | |||
| 2014-05-22 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-05-22 | Merge pull request #2282 from yui-knk/check-before-malloc | Yukihiro "Matz" Matsumoto | |
| Change range_check before mrb_obj_alloc. | |||
| 2014-05-22 | remove unnecessary assignment; ref #2301 | Yukihiro "Matz" Matsumoto | |
| 2014-05-22 | Merge pull request #2286 from suzukaze/refactor-kernel | Yukihiro "Matz" Matsumoto | |
| Use boolean macro in kernel.c | |||
| 2014-05-22 | Class.new do not call `class_eval' | ksss | |
| and set self for block argument | |||
| 2014-05-21 | Module#initialize set created object | ksss | |
| for block argument | |||
| 2014-05-21 | Reduce children filenames listing. | take_cheeze | |
| It is executed per each debug filenames in irep to same ireps(children). | |||
| 2014-05-21 | Reduce filename table creation in irep dumping to once. | take_cheeze | |
| 2014-05-21 | Merge pull request #2301 from mimaki/fix-load-mrb-segv | Yukihiro "Matz" Matsumoto | |
| mrb_load_irep_file() caused SEGV | |||
| 2014-05-21 | direct invocation of instance_eval | Yukihiro "Matz" Matsumoto | |
| 2014-05-21 | Check mrbc_context is null | mimaki | |
| 2014-05-21 | direct invocation of module_eval; ref #2298 | Yukihiro "Matz" Matsumoto | |
