| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-29 | Merge pull request #2625 from suzukaze/add-kernel.Integer | Yukihiro "Matz" Matsumoto | |
| Add kernel#Integer | |||
| 2014-10-29 | Add Kernel.Integer | Jun Hiroe | |
| 2014-10-29 | Fix mrb_convert_to_integer. | Jun Hiroe | |
| 2014-10-28 | Merge pull request #2624 from suzukaze/refactor-for_body | Yukihiro "Matz" Matsumoto | |
| Refactor for_body func | |||
| 2014-10-28 | Refactor for_body func | Jun Hiroe | |
| 2014-10-28 | Merge pull request #2623 from suzukaze/fix-indent | Yukihiro "Matz" Matsumoto | |
| Fix indent | |||
| 2014-10-28 | Merge pull request #2621 from suzukaze/fix-parse_string | Yukihiro "Matz" Matsumoto | |
| Replace int with mrb_bool in parse_string func | |||
| 2014-10-28 | Merge pull request #2622 from suzukaze/fix-local_var_p | Yukihiro "Matz" Matsumoto | |
| Replace int with mrb_bool in local_var_p func | |||
| 2014-10-28 | Fix indent | Jun Hiroe | |
| 2014-10-28 | Replace int with mrb_bool in parse_string func | Jun Hiroe | |
| 2014-10-28 | Replace int with mrb_bool in local_var_p func | Jun Hiroe | |
| 2014-10-27 | Merge pull request #2620 from suzukaze/refactor-yylex | Yukihiro "Matz" Matsumoto | |
| Refactor yylex func | |||
| 2014-10-27 | Refactor yylex func | Jun Hiroe | |
| 2014-10-27 | Merge pull request #2619 from suzukaze/refactor-mrbc_context_new | Yukihiro "Matz" Matsumoto | |
| Refactor mrbc_context_new func | |||
| 2014-10-27 | Refactor mrbc_context_new func | Jun Hiroe | |
| 2014-10-25 | Merge pull request #2618 from suzukaze/add-kernel.Float | Yukihiro "Matz" Matsumoto | |
| Add Kernel#Float | |||
| 2014-10-24 | Add Kernel.Float | Jun Hiroe | |
| 2014-10-23 | Merge pull request #2617 from suzukaze/add-kernel.Hash | Yukihiro "Matz" Matsumoto | |
| Add Kernel#Hash | |||
| 2014-10-21 | Add Kernel.Hash | Jun Hiroe | |
| 2014-10-21 | Merge pull request #2616 from suzukaze/add-kernel.String | Yukihiro "Matz" Matsumoto | |
| Add Kernel#String | |||
| 2014-10-20 | Add Kernel.String | Jun Hiroe | |
| 2014-10-20 | instance_methods etc should not include undef'ed method names; based on a ↵ | Yukihiro "Matz" Matsumoto | |
| patch from @cremno; fix #2613 | |||
| 2014-10-20 | Merge pull request #2612 from suzukaze/refactor-mrb_f_array | Yukihiro "Matz" Matsumoto | |
| Refactor mrb_f_array func | |||
| 2014-10-19 | Refactor mrb_f_array func | Jun Hiroe | |
| 2014-10-19 | refactoring C part of #2611 | Yukihiro "Matz" Matsumoto | |
| 2014-10-19 | Merge pull request #2611 from suzukaze/add-kernel.Array | Yukihiro "Matz" Matsumoto | |
| Add Kernel.Array | |||
| 2014-10-19 | Add Kernel.Array | Jun Hiroe | |
| 2014-10-18 | need addtional type check to avoid SEGV; ref #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-10-17 | context proc may be cfunc; fix #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-10-15 | remove header prototype of mrb_exc_print; close #2607 | Yukihiro "Matz" Matsumoto | |
| 2014-10-15 | Merge pull request #2608 from mrbrdo/fix-typo | Yukihiro "Matz" Matsumoto | |
| fix typo (i->idx) | |||
| 2014-10-15 | fix typo (i->idx) | Jan Berdajs | |
| 2014-10-03 | add similar range check for tm->usec as well | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | always check range before casting time_t to mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | time_t may overflow mrb_int when word boxing is used | Yukihiro "Matz" Matsumoto | |
| 2014-10-03 | word_boxing.h used int to represent symbols; use mrb_sym instead | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | Merge pull request #2602 from Hiroyuki-Matsuzaki/fix_cygwin_gcc_warning | Yukihiro "Matz" Matsumoto | |
| fixed. cygwin-gcc(ver4.8.3) warning in conv_digit() | |||
| 2014-10-02 | remove accidental check-in of mruby-thread gem | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | fixed. cygwin-gcc(ver4.8.3) warning in conv_digit() | Hiroyuki Matsuzaki | |
| 2014-10-02 | Merge pull request #2601 from mimaki/mrblib_absolute_path | Yukihiro "Matz" Matsumoto | |
| Change mrblib's source path to absolute path | |||
| 2014-10-02 | cast MRB_ENV_STACK_LEN to (mrb_int); ref #2600 | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | Merge pull request #2600 from mimaki/fix_msvc_warnings | Yukihiro "Matz" Matsumoto | |
| Pacify MSVC warnings for numeric.c, proc.c, and symbol.c | |||
| 2014-10-02 | Change mrblib's source path to absolute path | Hiroshi Mimaki | |
| 2014-10-02 | Pacify MSVC warnings for numeric.c, proc.c, and symbol.c | Hiroshi Mimaki | |
| 2014-10-02 | use __init_array_start to determine readonly data section; | Yukihiro "Matz" Matsumoto | |
| b72e94f used _etext and _edata to distinguish C string literals from heap allocated strings, but using _edata, global char arrays may be considered as string literals. to avoid the issue, we have to use __init_array_start, which might be less portable. you can still use _edata, by using MRB_NO_INIT_ARRAY_START. | |||
| 2014-10-01 | load.c to use mrb_ro_data_p() | Yukihiro "Matz" Matsumoto | |
| 2014-09-30 | mrbconf.h option MRB_USE_ETEXT_EDATA to reduce memory. | Yukihiro "Matz" Matsumoto | |
| on platforms with _etext and _edata, mruby can distinguish string literals so that it avoids memory allocation to copy them. for example, on my Linux box (x86 32bit), memory consumed by mrbtest decreased from 8,168,203 to 8,078,848 (reduced 88KB). | |||
| 2014-09-30 | mrb_sym2name_len() should initialize lenp even when proper symbol does not exist | Yukihiro "Matz" Matsumoto | |
| 2014-09-30 | remove unnecessary trailing comma to remove pre C99 declaration error with ↵ | Yukihiro "Matz" Matsumoto | |
| -Wdeclaration-after-statement | |||
| 2014-09-30 | O(1) mrb_sym2name_len(); close #2591 | Yukihiro "Matz" Matsumoto | |
| instead of adding sym->name hash table, linear symbol table is added, and reduced name->sym hash table size. | |||
