summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-03-27Remove unused variablemattn
2013-03-26Merge pull request #1078 from mattn/test_mruby-randomYukihiro "Matz" Matsumoto
Add test for mruby-random
2013-03-27bug in fread(3) error checkYukihiro Matz Matsumoto
2013-03-27Fix test for mruby-randommattn
2013-03-27Add test for mruby-randommattn
2013-03-27Merge branch 'masuidrive-new_mrb_format'Yukihiro Matz Matsumoto
2013-03-27little cosmetic change (delete word Rite); bump dump file version numberYukihiro Matz Matsumoto
2013-03-26Merge pull request #1077 from matsumoto-r/support_mt_instance_valYukihiro "Matz" Matsumoto
Support MT instance valiables and activate mruby-random
2013-03-27Activated mruby-randomMATSUMOTO Ryosuke
2013-03-27Support mt instance valiablesMATSUMOTO Ryosuke
2013-03-27resolve conflict from #964Yukihiro Matz Matsumoto
2013-03-26Merge pull request #1076 from kano4/pr-use-c99-flexible-array-in-pool_cYukihiro "Matz" Matsumoto
Use C99 flexible array in pool.c
2013-03-26Merge pull request #1075 from mattn/refactoring_randYukihiro "Matz" Matsumoto
Refactoring mruby-random
2013-03-26Use C99 flexible array in pool.ckano4
2013-03-26Refactoring mruby-randmattn
2013-03-26Merge pull request #1074 from matsumoto-r/add_kern_and_class_methodYukihiro "Matz" Matsumoto
Add kernel#rand, #srand ,Random#rand, #srand method
2013-03-26main.to_s should also return "main"Yukihiro Matz Matsumoto
2013-03-26Add Random#rand and Random#srandMATSUMOTO Ryosuke
2013-03-26Add Kernel#rand and Kernel#srandMATSUMOTO Ryosuke
2013-03-26Changed to static functionsMATSUMOTO Ryosuke
2013-03-26Change Random module to classMATSUMOTO Ryosuke
2013-03-26remove all MRB_TT_MAIN from sourceYukihiro Matz Matsumoto
2013-03-26Merge branch 'selftopiv' of https://github.com/carsonmcdonald/mruby into ↵Yukihiro Matz Matsumoto
carsonmcdonald-selftopiv
2013-03-26use C99 flexible array member instead of [1]Yukihiro Matz Matsumoto
2013-03-26Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-03-26Merge pull request #1073 from kurodash/pr-builderr-on-vs2012Yukihiro "Matz" Matsumoto
fix build error on VS2012 toolchains.
2013-03-26Merge pull request #1072 from monaka/pr-cleanup-code-20130326Yukihiro "Matz" Matsumoto
Cleanup code.
2013-03-26zero length array is GCC extensionYukihiro Matz Matsumoto
2013-03-26fixed build error on VS2012 toolchains.kurodash
2013-03-26Preprocessor # should be the top of line.Masaki Muranaka
2013-03-26Remove unused macros.Masaki Muranaka
2013-03-26Remove #if 0 ... #endif code.Masaki Muranaka
2013-03-25Merge pull request #1071 from crimsonwoods/remove_strerrorYukihiro "Matz" Matsumoto
remove unused functions 'mrb_strerrno' and 'mrb_bug_errno'.
2013-03-25remove unused functions 'mrb_strerrno' and 'mrb_bug_errno'.crimsonwoods
2013-03-25Merge pull request #1065 from monaka/pr-reduce-stdio-dependencyYukihiro "Matz" Matsumoto
Reduce stdio dependency
2013-03-25Merge pull request #1069 from kano4/pr-fix-indentation-in-mirb_cYukihiro "Matz" Matsumoto
Fix indentation in mirb.c
2013-03-25Merge pull request #1070 from mattn/fix_orderYukihiro "Matz" Matsumoto
mruby-sprintf should precede mruby-print
2013-03-25mruby-sprintf should precede mruby-printmattn
2013-03-25Fix indentation in mirb.ckano4
2013-03-25Merge pull request #1066 from xxuejie/static_inline_top_envYukihiro "Matz" Matsumoto
Make topenv() static inlined to avoid compiling error when using clang and -O0 mode
2013-03-25Make mrb_top_self return a real instance.Carson McDonald
2013-03-24Make topenv() static inlinedXuejie "Rafael" Xiao
2013-03-24Merge pull request #1061 from nemerle/RData-type-constificationYukihiro "Matz" Matsumoto
Changed the RData type field to 'const'
2013-03-24Merge pull request #1063 from matsumoto-r/adjust_spase_tabYukihiro "Matz" Matsumoto
Adjusted indent, space and tab
2013-03-24Add stdio.h. This is just for now. We should discuss about remote tests later.Masaki Muranaka
2013-03-24Reduce using snprintf(). They can replace by mruby API.Masaki Muranaka
2013-03-24Separate FILE dependencies with ENABLE_STDIO.Masaki Muranaka
2013-03-24Include stddef.h. It is required by size_t. In case you include stdio.h, ↵Masaki Muranaka
stddef.h is included indirectly.
2013-03-24Adjusted indent, space and tabMATSUMOTO Ryosuke
2013-03-23Changed the RData type field to 'const'Artur K
Within the mruby source code the 'type' field is either initialized, or used in const manner. IMHO changing the type after it has been created might cause hard to track errors.