| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-26 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | should use plain int for index, since i may be printed using %d; close #2127 | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | Merge pull request #2126 from kyab/fix_msvc_warning_error.c | Yukihiro "Matz" Matsumoto | |
| Fix MSVC warnings for error.c | |||
| 2014-04-26 | Merge pull request #2124 from take-cheeze/eval_file_line | Yukihiro "Matz" Matsumoto | |
| Support file name and line number argument in eval. | |||
| 2014-04-26 | Merge pull request #2118 from ksss/range-bool | Yukihiro "Matz" Matsumoto | |
| RRange excl flag use mrb_bool insteard of int | |||
| 2014-04-26 | Fix MSVC warnings for error.c | kyab | |
| 2014-04-25 | Fix lineno overwrite in parser_init_cxt. | take_cheeze | |
| By reordering parsing string with mrb_parser_parse won't always start with line 1. | |||
| 2014-04-25 | Refactoring OP_CALL | mirichi | |
| 2014-04-25 | better integer size assertion suggested by usak | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | eliminate plain int except for a few cases like arena_index | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | Merge pull request #2117 from kyab/fix_msvc_warning_backtrace.c | Yukihiro "Matz" Matsumoto | |
| Fix MSVC warning for backtrace.c | |||
| 2014-04-25 | remove -Wsign-compare warnings | Yukihiro "Matz" Matsumoto | |
| 2014-04-24 | range_init argument for exclude_end use mrb_bool | ksss | |
| 2014-04-24 | mrb_range_new excl flag use mrb_bool insteard of int | ksss | |
| 2014-04-24 | Fix MSVC warning for backtrace.c | kyab | |
| 2014-04-24 | Fix MSVC warning for gc.c | kyab | |
| 2014-04-23 | fixed. | mirichi | |
| 2014-04-22 | bug fixed | mirichi | |
| 2014-04-22 | reduce the init size of stack | mirichi | |
| 2014-04-22 | OP_SEND refactoring | mirichi | |
| 2014-04-21 | remove `mrb_str_buf_cat` | cremno | |
| It does the same as `mrb_str_cat`. | |||
| 2014-04-21 | fix optional block arguments in rhs | Nobuyoshi Nakada | |
| define optional block arguments as argument variables in the rhs default expressions, as same as mere assignment expressions. Import ruby/ruby@01740f0c273c89f7bcff3d5014d73c8ff6fb1986 | |||
| 2014-04-21 | adjust indent | Nobuyoshi Nakada | |
| 2014-04-21 | fix optional arguments in rhs | Nobuyoshi Nakada | |
| define optional arguments as argument variables in the rhs default expressions, as same as mere assignment expressions. Import ruby/ruby@01740f0c273c89f7bcff3d5014d73c8ff6fb1986 | |||
| 2014-04-21 | Merge pull request #2096 from nobu/def_in_cmdarg | Yukihiro "Matz" Matsumoto | |
| Def in cmdarg | |||
| 2014-04-21 | allow method definition in cmdarg | Nobuyoshi Nakada | |
| save cmdarg_stack and isolate command argument state from outer scope to allow method definition in cmdarg import from ruby/ruby@04bb9d6b75a55d4000700769eead5a5cb942c25b | |||
| 2014-04-21 | use `stack_type` instead of raw `unsigned int` | Nobuyoshi Nakada | |
| 2014-04-21 | Use boolean macro in is_valid_c_symbol_name() | Jun Hiroe | |
| 2014-04-19 | Use boolean macro instead of integer literal in `is_debug_info_defined`. | take_cheeze | |
| 2014-04-19 | Allow parenthesed do-block in cmdarg | Nobuyoshi Nakada | |
| Flush cmdarg flags inside left-paren in a command argument, to allow parenthesed `do-block` as an argument without arguments parentheses. `CMDARG_PUSH(0)` for tLPAREN_ARG is before `CMDARG_PUSH(1)` in `command_args` due to look-ahead. | |||
| 2014-04-17 | Use mrb_regexp_p to check regexp. | take_cheeze | |
| 2014-04-17 | Add mrb_regexp_p to check whether mrb_value is Regexp. | take_cheeze | |
| 2014-04-17 | Merge pull request #2069 from cremno/static | Yukihiro "Matz" Matsumoto | |
| various functions should have internal linkage | |||
| 2014-04-17 | Merge pull request #2068 from cremno/exc_inspect-convert-mesg-to-string | Yukihiro "Matz" Matsumoto | |
| convert exception message to string | |||
| 2014-04-16 | various functions should have internal linkage | cremno | |
| 2014-04-16 | get classname and concatenate ": " only once | cremno | |
| 2014-04-16 | convert exception message to string | cremno | |
| fixes: mruby -e "p ArgumentError.new(1)" | |||
| 2014-04-16 | Move src/re.h to include/mruby/re.h . | take_cheeze | |
| 2014-04-16 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-16 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-04-16 | Refactor fix_to_f in numeric.c | Jun Hiroe | |
| 2014-04-16 | Refactor lshift in numeric.c | Jun Hiroe | |
| 2014-04-16 | Refactor fix_shift_get_width in numeric.c | Jun Hiroe | |
| 2014-04-15 | fixed typo in opcode.h | Yukihiro "Matz" Matsumoto | |
| 2014-04-15 | OP_EQ系が速くなった | mirichi | |
| 2014-04-15 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-04-14 | should always initialize header flags for pooled strings | Yukihiro "Matz" Matsumoto | |
| 2014-04-14 | fixed wrong use of pointer reference found by @tsahara; ref #2059 | Yukihiro "Matz" Matsumoto | |
| 2014-04-14 | Merge pull request #2060 from cremno/exc_inspect-dup-file | Yukihiro "Matz" Matsumoto | |
| exc_inspect: dup file and check mesg only once | |||
| 2014-04-14 | exc_inspect: dup file and check mesg only once | cremno | |
