summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2012-05-18revise version descriptionYukihiro Matsumoto
2012-05-18failed to initialize source stringYukihiro Matsumoto
2012-05-18move compile.h to mruby/compile.hYukihiro Matsumoto
2012-05-18add extern "C" guardsYukihiro Matsumoto
2012-05-18yywarn should use warn_buffer not error_bufferYukihiro Matsumoto
2012-05-18remove mrb_parse_nstring_ext; use mrb_parser_new() then set p->capture_error ...Yukihiro Matsumoto
2012-05-18keep toplevel local variables; close #133Yukihiro Matsumoto
2012-05-18new API for parserYukihiro Matsumoto
2012-05-18remove src/method.hYukihiro Matsumoto
2012-05-18remove unused method.h from kernel.cYukihiro Matsumoto
2012-05-18remove unused method.h from object.cYukihiro Matsumoto
2012-05-17compile error should contain line numberYukihiro Matsumoto
2012-05-17print line number in compile error messagesYukihiro Matsumoto
2012-05-17too many line count in nextc()Yukihiro Matsumoto
2012-05-17add cast to remove warning; close #154Yukihiro Matsumoto
2012-05-17idx should be less than the cap, if it is equal irep needs to grow.Carson McDonald
2012-05-17no SEGV for nth_ref & back_ref; close #152Yukihiro Matsumoto
2012-05-17remove unused assignmentsYukihiro Matsumoto
2012-05-17avoid updating existing libmruby.a to avoid problems on low time resolution f...Yukihiro Matsumoto
2012-05-17avoid isfinite() in num_powYukihiro Matsumoto
2012-05-17redefine POST/NEG FIXABLE using INT_MIN/MAXYukihiro Matsumoto
2012-05-17ignore return value from strtod()Yukihiro Matsumoto
2012-05-17use gperf -L ANSI-C to generate lex.defYukihiro Matsumoto
2012-05-17add mrb_define_singleton_method/mrb_define_module_functionYukihiro Matsumoto
2012-05-17gmtime_r emulated by gmtime_s should return struct tm*; close #146Yukihiro Matsumoto
2012-05-16Merge pull request #139 from pbosetti/masterYukihiro "Matz" Matsumoto
2012-05-16Merge pull request #142 from monaka/pr-initialize-variables-20110516Yukihiro "Matz" Matsumoto
2012-05-16Avoid "may be used uninitialized in this function" warning.Masaki Muranaka
2012-05-16Remove unused static functions.Masaki Muranaka
2012-05-16Merged MSVC branchPaolo Bosetti
2012-05-15Code formatting; Added credits for erf/erfc implementationPaolo Bosetti
2012-05-15Added also support for erfc under MSVCPaolo Bosetti
2012-05-15Re-added Math finctions not supported under MSVC, and added preprocessor dire...Paolo Bosetti
2012-05-15Tested under MSVC by nkshigeru. Minor code formattingPaolo Bosetti
2012-05-16fix for MSVCnkshigeru
2012-05-16Remove some redundant function declarations.Masaki Muranaka
2012-05-15Code formatting; Added credits for erf/erfc implementationPaolo Bosetti
2012-05-15Added also support for erfc under MSVCPaolo Bosetti
2012-05-15Re-added Math finctions not supported under MSVC, and added preprocessor dire...Paolo Bosetti
2012-05-16fix #127 on mingw.mattn
2012-05-15numeric division to return float valueYukihiro Matsumoto
2012-05-15add Numeric#**Yukihiro Matsumoto
2012-05-15Makefile: remove echo action from all targetYukihiro Matsumoto
2012-05-15remove non VC math functions; close #135Yukihiro Matsumoto
2012-05-15remove old MANDEL code; close #134Yukihiro Matsumoto
2012-05-14OP_STOP to return exception object on errorYukihiro Matsumoto
2012-05-14removed lines the seem not to conform C99Yukihiro Matsumoto
2012-05-13Merge pull request #116 from pbosetti/masterYukihiro "Matz" Matsumoto
2012-05-13emulate gmtime_r/localtime_r by gmtime_s/localtime_s on WindowsYukihiro Matsumoto
2012-05-12Replaced C++ style commentsPaolo Bosetti