| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-08 | define and use print format macros for mrb_int | Cremno | |
| For portability: %ld can't be used to print a 64-bit mrb_int on WIN(32|64) because long is 32-bit wide. | |||
| 2013-03-09 | OP_ARRAY may overflow ARG_C | Yukihiro Matz Matsumoto | |
| 2013-03-09 | Fix warnings. | Masaki Muranaka | |
| 2013-03-09 | Don't use int. It decreases portability. Use size_t as array index and ↵ | Masaki Muranaka | |
| length. It avoids overflow in the extreme situations. | |||
| 2013-03-09 | Sanity check. As there are implicaton SIZE_MAX >= UINT32_MAX in this code. ↵ | Masaki Muranaka | |
| This assumption may break on some targets which have 16bit memory space. | |||
| 2013-03-09 | Clean up code. | Masaki Muranaka | |
| 2013-03-09 | Store to *bin_size if bin_size != NULL. | Masaki Muranaka | |
| 2013-03-09 | Use type cast not void* but char*. Don't substiture void pointers. | Masaki Muranaka | |
| 2013-03-08 | Remove unused substitutions and calculations. | Masaki Muranaka | |
| 2013-03-08 | Don't initialize variables that store result as MRB_DUMP_OK. It possibly ↵ | Masaki Muranaka | |
| causes bugs on modifications in the future. | |||
| 2013-03-08 | Fixed to uint8_t | Yuichiro MASUI | |
| 2013-03-08 | Change unsigned char to uint8_t | Yuichiro MASUI | |
| 2013-03-08 | unify mrb_ary_new{,_elts,_from_values}; mrb_ary_from_values() is a winner | Yukihiro Matz Matsumoto | |
| 2013-03-08 | New mrb format. The detail is in https://github.com/mruby/mruby/issues/944 | Yuichiro MASUI | |
| 2013-03-06 | Cut off mrb_irep_free from mrb_close; based on a patch from @matsumoto-r; ↵ | Yukihiro Matz Matsumoto | |
| close #951 | |||
| 2013-03-05 | Merge pull request #957 from mattn/no_ambiguous | Yukihiro "Matz" Matsumoto | |
| Remove warning for regexp | |||
| 2013-03-06 | Remove warning for regexp | mattn | |
| 2013-03-05 | Add null check after mrb_realloc for array | Carson McDonald | |
| 2013-03-05 | Add include guard in node.h | kano4 | |
| 2013-03-05 | Replace tabs with spaces | kano4 | |
| 2013-03-04 | Merge pull request #949 from mattn/find_symbol | Yukihiro "Matz" Matsumoto | |
| Skip end of loop in mrb_sym2name_len | |||
| 2013-03-04 | Merge pull request #950 from monaka/pr-remove-macro-RB_GC_GUARD | Yukihiro "Matz" Matsumoto | |
| Remove RB_GC_GUARD(x) macro. | |||
| 2013-03-05 | skip empty OP_STRCAT | Yukihiro Matz Matsumoto | |
| 2013-03-05 | Remove RB_GC_GUARD(x) macro. See also mruby/mruby#948. | Masaki Muranaka | |
| 2013-03-05 | Skip end of loop in mrb_sym2name_len | mattn | |
| 2013-03-04 | Merge pull request #947 from monaka/pr-cleanup-stdio-calls-20130304 | Yukihiro "Matz" Matsumoto | |
| Cleanup stdio related. | |||
| 2013-03-05 | use mrb_str_buf_new to create a buffer to be used by mrb_str_buf_cat | Yukihiro Matz Matsumoto | |
| 2013-03-05 | Make some printf enclose in #ifdef ENABLE_STDIO. | Masaki Muranaka | |
| 2013-03-04 | Merge pull request #937 from monaka/pr-remove-snprintf-from-localjump_error | Yukihiro "Matz" Matsumoto | |
| Reduce a snprintf() call in localjump_error(). | |||
| 2013-03-05 | Modify API configuration. | Masaki Muranaka | |
| C API mrb_p() is always callable. - But it will do nothing when ENABLE_STDIO is not defined. Kernel#__printstr__ is always callable. - But it will do nothing when ENABLE_STDIO is not defined. | |||
| 2013-03-05 | Include stdio.h in mrbconf.h instead of C extension sources. | Masaki Muranaka | |
| 2013-03-05 | proper irep pool duplication check for strings | Yukihiro Matz Matsumoto | |
| 2013-03-05 | save/restore arena index for each codedump iteration | Yukihiro Matz Matsumoto | |
| 2013-03-04 | Merge pull request #943 from monaka/pr-tmp-move-sprintf-to-mrbgem | Yukihiro "Matz" Matsumoto | |
| Move Kernel#sprintf to mrbgem | |||
| 2013-03-04 | Separate Kernel#sprintf support from mruby core. It's moved to mrbgems. | Masaki Muranaka | |
| 2013-03-04 | Move src/sprintf to mrbgems/mruby-sprintf/src/ | Masaki Muranaka | |
| 2013-03-04 | Replace tabs with spaces | kano4 | |
| 2013-03-04 | allow reserved word for heredoc terminator | Yukihiro Matz Matsumoto | |
| 2013-03-04 | applied a patch from @cremo to support MSVC | Yukihiro Matz Matsumoto | |
| 2013-03-04 | Merge branch 'heredoc' of https://github.com/FUKUZAWA-Tadashi/mruby into ↵ | Yukihiro Matz Matsumoto | |
| FUKUZAWA-Tadashi-heredoc | |||
| 2013-03-03 | Merge pull request #884 from monaka/pr-use-MRB_IREP_ARRY_INIT_SIZE-macro | Yukihiro "Matz" Matsumoto | |
| Use MRB_IREP_ARRAY_INIT_SIZE macro. | |||
| 2013-03-04 | fix mrb_int for INT64 env | Yukihiro Matz Matsumoto | |
| 2013-03-03 | Merge pull request #934 from monaka/pr-use-mrb_int-in-array.c | Yukihiro "Matz" Matsumoto | |
| Define ARY_MAX_SIZE strictly. Use mrb_int instead of int. | |||
| 2013-03-03 | Merge pull request #936 from monaka/pr-cleanup-range.c-20130303 | Yukihiro "Matz" Matsumoto | |
| Clean up range.c. Use mrb_int. Use mrb_vtype. | |||
| 2013-03-03 | The variable len isn't used anywhere. | Carson McDonald | |
| 2013-03-03 | Merge pull request #928 from cremno/mrb_open-void | Yukihiro "Matz" Matsumoto | |
| mrb_open takes no arguments: (void) instead of () | |||
| 2013-03-03 | Merge pull request #930 from kaishuu0123/cleanup-parse.y | Yukihiro "Matz" Matsumoto | |
| cleanup: delete commented out match_op() from parse.y | |||
| 2013-03-03 | Merge pull request #931 from matsumoto-r/fix_some_indents | Yukihiro "Matz" Matsumoto | |
| Adjust some indents | |||
| 2013-03-03 | delete trailing space | FUKUZAWA-Tadashi | |
| 2013-03-03 | implement heredoc | FUKUZAWA-Tadashi | |
