summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2013-04-28add extern funcs declaration and casts for cimpiling C++ compilerarton
2013-04-28mrb_str_new_static(): zero copy string creationYukihiro "Matz" Matsumoto
2013-04-27detect cyclic-include in Module#includeskandhas
2013-04-26Add void to function parameters. This is for compatibility with C++Masaki Muranaka
2013-04-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-04-26small cosmetic refactoringYukihiro "Matz" Matsumoto
2013-04-26rename mrb_interned API functionsYukihiro "Matz" Matsumoto
2013-04-26Merge branch 'suppress_intern' of https://github.com/crimsonwoods/mruby into ...Yukihiro "Matz" Matsumoto
2013-04-25Merge pull request #1214 from monaka/pr-cleanup-load.cYukihiro "Matz" Matsumoto
2013-04-25remove unnecessary local variableYukihiro "Matz" Matsumoto
2013-04-25Remove redundant whitespaces. Just cosmetic.Masaki Muranaka
2013-04-25Add comments why there is no need to put the SIZE_ERROR check. It is for revi...Masaki Muranaka
2013-04-25Add error checks for small environments which pointer is less than 32bit. The...Masaki Muranaka
2013-04-25More strict NULL checks.Masaki Muranaka
2013-04-25Fix underlying memory leaks. When realloc is failed, memories are leaked.Masaki Muranaka
2013-04-25suppress intern inside of 'respond_to?'.crimsonwoods
2013-04-25Remove sprintf().Masaki Muranaka
2013-04-25remove calling sprintf(); ref #1210Yukihiro "Matz" Matsumoto
2013-04-24Merge pull request #1211 from skandhas/pr-fix-Module-ancestorsYukihiro "Matz" Matsumoto
2013-04-25fix Module#ancestors and update testskandhas
2013-04-25a string may have a lot of non-printable chars.Tomoyuki Sahara
2013-04-25aspec bits should be packed in Ax; ref #1209Yukihiro "Matz" Matsumoto
2013-04-25modify functions to suppress symbol registration into intern pool.crimsonwoods
2013-04-25modify the type of return value (mrb_bool => mrb_value).crimsonwoods
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-25add new functions to check if symbols are interned without registration.crimsonwoods
2013-04-25rename MRB_ARGS_XXX to MRB_ASPEC_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-25rename ARGS_GETXXX macros to avoid potential name conflict; close #1206Yukihiro "Matz" Matsumoto
2013-04-24Merge pull request #1208 from tomykaira/fix_wrong_symbol_commentYukihiro "Matz" Matsumoto
2013-04-24Fix wrong commenttomykaira
2013-04-23fix unnecessary irep_freemasahino
2013-04-22Merge pull request #1201 from monaka/pr-simplify-load.cYukihiro "Matz" Matsumoto
2013-04-22Simplify load.c. Remove code clones. Suppress return paths.Masaki Muranaka
2013-04-22ensure clause should be executed only once; close #1185Yukihiro "Matz" Matsumoto
2013-04-22Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-04-22should call ensure before popping callinfo; cancel 8ce1ea84Yukihiro "Matz" Matsumoto
2013-04-22Use mrb_bool for the 'b' format specifier of mrb_get_argsh2so5
2013-04-20Merge pull request #1196 from monaka/pr-use-mrb_aspecYukihiro "Matz" Matsumoto
2013-04-21Use mrb_aspec instead of int32_t. As it will clarify what is doing.Masaki Muranaka
2013-04-21Use memcmp instead of strcmp if it is possible.Masaki Muranaka
2013-04-21Remove a comment.Masaki Muranaka
2013-04-21Clean up variable types and type casts.Masaki Muranaka
2013-04-20put spaces after if/whileYukihiro "Matz" Matsumoto
2013-04-20wrong type castYukihiro "Matz" Matsumoto
2013-04-20small consmetic fixYukihiro "Matz" Matsumoto
2013-04-20Module#class_variables should check superclassesYukihiro "Matz" Matsumoto
2013-04-20Add implementation for respond_to_missing?Carson McDonald
2013-04-19Merge pull request #1191 from h2so5/refactor-kernel-and-classYukihiro "Matz" Matsumoto
2013-04-20Refactor kernel.c and class.ch2so5
2013-04-20use ISXDIGIT instead isxdigit on parser.y:3485Daehyub Kim