| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-19 | allocf should take ud; https://twitter.com/junjis0203/status/236949976461221889 | Yukihiro Matsumoto | |
| 2012-08-18 | remove assignment to unused dst; close #424 | Yukihiro Matsumoto | |
| 2012-08-18 | remove assignment to unused retval | Yukihiro Matsumoto | |
| 2012-08-18 | remove BEGIN/END from syntax | Yukihiro Matsumoto | |
| 2012-08-18 | reduce mrb_funcall invocations | Yukihiro Matsumoto | |
| 2012-08-18 | replace mrb_iv_set by mrb_obj_iv_set | Yukihiro Matsumoto | |
| 2012-08-18 | rename MRUBY_OBJECT_HEADER to MRB_OBJECT_HEADER | Yukihiro Matsumoto | |
| 2012-08-18 | use bit field mrb_vtype in MRUBY_OBJECT_HEADER | Yukihiro Matsumoto | |
| 2012-08-17 | Merge pull request #434 from joequery/exit_in_string | Yukihiro "Matz" Matsumoto | |
| Improve handling of "exit" and "quit" in mirb. | |||
| 2012-08-17 | Don't exit if 'exit' or 'quit' are in quote blocks | Joseph McCullough | |
| 2012-08-17 | 'exit' and 'quit' cause exit regardless of open block | Joseph McCullough | |
| 2012-08-17 | Merge pull request #433 from selman/init_prototypes | Yukihiro "Matz" Matsumoto | |
| function prototypes sorted by call & removed unused (file, io, thread) | |||
| 2012-08-17 | function prototypes sorted by call & removed unused (file, io, thread) | Selman ULUG | |
| 2012-08-16 | Merge pull request #431 from selman/khash | Yukihiro "Matz" Matsumoto | |
| khash.h including at line:255 | |||
| 2012-08-16 | Merge pull request #432 from masamitsu-murase/modify_filename | Yukihiro "Matz" Matsumoto | |
| Modify buffer size for filename. | |||
| 2012-08-17 | Modify buffer size for filename. | Masamitsu MURASE | |
| 2012-08-16 | MRB_IV_INITIAL_SIZE duplicate definition | Selman ULUG | |
| 2012-08-16 | khash.h including at line:255 | Selman ULUG | |
| 2012-08-16 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-08-16 | outer might be NULL; close #428 | Yukihiro Matsumoto | |
| 2012-08-16 | Merge pull request #429 from pbosetti/XCode | Yukihiro "Matz" Matsumoto | |
| Code formatting in sprintf.c | |||
| 2012-08-16 | Corrected some missing link in Xcode project | Paolo Bosetti | |
| 2012-08-16 | Merge branch 'master' into XCode | Paolo Bosetti | |
| Also, fixed issue in Xcode project build settings | |||
| 2012-08-16 | Code formatting in sprintf.c | Paolo Bosetti | |
| switch/case constructs in mrb_str_format() had mismatched indentation styles: clean up to 2-spaces-per-level. | |||
| 2012-08-15 | Merge pull request #427 from Constellation/canonicalize-nan-value | Yukihiro "Matz" Matsumoto | |
| Canonicalize NaN value in NaN boxing environment | |||
| 2012-08-15 | canonicalize NaN value in NaN boxing environment | Constellation | |
| 2012-08-14 | Merge pull request #426 from mirichi/op_enter_optimize | Yukihiro "Matz" Matsumoto | |
| op_enter_optimize | |||
| 2012-08-15 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-08-15 | mruby should read from stdin if no argument given as cruby does | Yukihiro Matsumoto | |
| 2012-08-15 | mruby should accept "-" as stdin | Yukihiro Matsumoto | |
| 2012-08-15 | op_enter_optimize | mirichi | |
| 2012-08-14 | fixed showing no 'Usage'. | suzukaze | |
| 2012-08-14 | Merge pull request #423 from pbosetti/XCode | Yukihiro "Matz" Matsumoto | |
| Xcode project cleanup (corrects the error in #422, not pulled) | |||
| 2012-08-14 | Further improvement and optimization of Xcode project build settings | Paolo Bosetti | |
| 2012-08-14 | Made the Xcode building schemes shared (this adds ↵ | Paolo Bosetti | |
| mruby.xcodeproj/xcshareddata/* to the repo) | |||
| 2012-08-14 | NaN boxing | Yukihiro Matsumoto | |
| 2012-08-14 | move mrb_value def to mruby/value.h | Yukihiro Matsumoto | |
| 2012-08-13 | Further revision of the set of Xcode build schemes | Paolo Bosetti | |
| Now there are only three schemes (build commands, static library, OS X framework) plus a scheme wrapping the standard make file. | |||
| 2012-08-13 | Merge branch 'master' into XCode | Paolo Bosetti | |
| 2012-08-13 | Modified and made more clear Xcode project schemes. Also, removed /build ↵ | Paolo Bosetti | |
| form main .gitignore | |||
| 2012-08-13 | setjmp in mrb_funcall_with_block if mrb->jmp is empty | Yukihiro Matsumoto | |
| 2012-08-13 | iv table may be empty | Yukihiro Matsumoto | |
| 2012-08-13 | use TRUE/FALSE instead of 1/0 | Yukihiro Matsumoto | |
| 2012-08-12 | Merge pull request #421 from masamitsu-murase/modify_puts | Yukihiro "Matz" Matsumoto | |
| `puts` should print "\n" only when the argument does not end with "\n". | |||
| 2012-08-12 | Merge pull request #420 from masamitsu-murase/modify_exception_handling | Yukihiro "Matz" Matsumoto | |
| Modify exception handling | |||
| 2012-08-13 | `puts` should print "\n" only when the argument does not end with "\n". | Masamitsu MURASE | |
| 2012-08-13 | Add more test for exception. | Masamitsu MURASE | |
| 2012-08-13 | Modify exception handling. | Masamitsu MURASE | |
| If an exception is raised before cipush is called in mrb_run, it should be handled in the outer mrb_run. | |||
| 2012-08-12 | check value from NilClass#inspect | Yukihiro Matsumoto | |
| 2012-08-12 | check inside of result from Kernel#instance_variable | Yukihiro Matsumoto | |
