| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-05-19 | fix mrb_gc_mark_ht_size() and mrb_gc_free_ht() types | Mitchell Blank Jr | |
| mrb_gc_mark_ht_size() and mrb_gc_free_ht() were declared in gc.h as taking a "RHash *" argument, but then they were defined in hash.c as taking a "RClass *" Get these in sync. | |||
| 2012-05-19 | C++ compilability: "not" is a C++ keyword, avoid it | Mitchell Blank Jr | |
| see http://en.cppreference.com/w/cpp/language/operator_alternative | |||
| 2012-05-19 | C++ compilabilty -- "new" is a C++ keyword, avoid it | Mitchell Blank Jr | |
| 2012-05-19 | C++ compilability -- "try" is a keyword, avoid as variable name | Mitchell Blank Jr | |
| 2012-05-19 | Helper functions for st_foreach() return "enum st_retval" not "int" | Mitchell Blank Jr | |
| Just making this a bit more consistent throughout the code | |||
| 2012-05-19 | C++ compilability - don't define types inside others | Mitchell Blank Jr | |
| The following is legal code in both C and C++: struct foo { struct bar { int a } x; int y; }; ...however in C++ it defines a type called "foo::bar" instead of "bar". Just avoid this construct altogether | |||
| 2012-05-19 | should initialize p->sterm every parse time | Yukihiro Matsumoto | |
| 2012-05-19 | remove src/pool.h; close #163 | Yukihiro Matsumoto | |
| 2012-05-19 | mirb should detect end of expression smarter | Yukihiro Matsumoto | |
| 2012-05-19 | remove dependency to node.h and pool.h | Yukihiro Matsumoto | |
| 2012-05-19 | p->tree may be NULL; close #161 | Yukihiro Matsumoto | |
| 2012-05-18 | remove obsolete minimain.c | Yukihiro Matsumoto | |
| 2012-05-18 | Merge pull request #158 from pbosetti/tests | Yukihiro "Matz" Matsumoto | |
| Minor edits to test suite and Math module | |||
| 2012-05-18 | implement Kernel#p in Ruby | Yukihiro Matsumoto | |
| 2012-05-17 | Merge branch 'tests' of github.com:pbosetti/mruby into tests | Paolo Bosetti | |
| 2012-05-18 | remove unused prototype | Yukihiro Matsumoto | |
| 2012-05-18 | revise version description | Yukihiro Matsumoto | |
| 2012-05-18 | failed to initialize source string | Yukihiro Matsumoto | |
| 2012-05-18 | move compile.h to mruby/compile.h | Yukihiro Matsumoto | |
| 2012-05-18 | add extern "C" guards | Yukihiro Matsumoto | |
| 2012-05-18 | yywarn should use warn_buffer not error_buffer | Yukihiro Matsumoto | |
| 2012-05-18 | remove mrb_parse_nstring_ext; use mrb_parser_new() then set p->capture_error ↵ | Yukihiro Matsumoto | |
| = 1; then call mrb_parser_parse(); see tool/mirb/mirb.c | |||
| 2012-05-18 | keep toplevel local variables; close #133 | Yukihiro Matsumoto | |
| 2012-05-18 | new API for parser | Yukihiro Matsumoto | |
| 2012-05-17 | Minor edits in tests for Math module | Paolo Bosetti | |
| 2012-05-18 | remove src/method.h | Yukihiro Matsumoto | |
| 2012-05-18 | remove unused method.h from kernel.c | Yukihiro Matsumoto | |
| 2012-05-18 | remove unused method.h from object.c | Yukihiro Matsumoto | |
| 2012-05-17 | compile error should contain line number | Yukihiro Matsumoto | |
| 2012-05-17 | print line number in compile error messages | Yukihiro Matsumoto | |
| 2012-05-17 | too many line count in nextc() | Yukihiro Matsumoto | |
| 2012-05-17 | add cast to remove warning; close #154 | Yukihiro Matsumoto | |
| 2012-05-17 | idx should be less than the cap, if it is equal irep needs to grow. | Carson McDonald | |
| 2012-05-17 | no SEGV for nth_ref & back_ref; close #152 | Yukihiro Matsumoto | |
| 2012-05-17 | remove unused assignments | Yukihiro Matsumoto | |
| 2012-05-17 | avoid updating existing libmruby.a to avoid problems on low time resolution ↵ | Yukihiro Matsumoto | |
| file systems; close #136 | |||
| 2012-05-17 | avoid isfinite() in num_pow | Yukihiro Matsumoto | |
| 2012-05-17 | redefine POST/NEG FIXABLE using INT_MIN/MAX | Yukihiro Matsumoto | |
| 2012-05-17 | ignore return value from strtod() | Yukihiro Matsumoto | |
| 2012-05-17 | use gperf -L ANSI-C to generate lex.def | Yukihiro Matsumoto | |
| 2012-05-17 | add mrb_define_singleton_method/mrb_define_module_function | Yukihiro Matsumoto | |
| 2012-05-17 | gmtime_r emulated by gmtime_s should return struct tm*; close #146 | Yukihiro Matsumoto | |
| 2012-05-16 | Merge pull request #139 from pbosetti/master | Yukihiro "Matz" Matsumoto | |
| Re-added Math functions missing under MSVC, with custom implementations | |||
| 2012-05-16 | Merge pull request #142 from monaka/pr-initialize-variables-20110516 | Yukihiro "Matz" Matsumoto | |
| Avoid "may be used uninitialized in this function" warning. | |||
| 2012-05-16 | Avoid "may be used uninitialized in this function" warning. | Masaki Muranaka | |
| 2012-05-16 | Remove unused static functions. | Masaki Muranaka | |
| 2012-05-16 | Merged MSVC branch | Paolo Bosetti | |
| 2012-05-15 | Code formatting; Added credits for erf/erfc implementation | Paolo Bosetti | |
| 2012-05-15 | Added also support for erfc under MSVC | Paolo Bosetti | |
| 2012-05-15 | Re-added Math finctions not supported under MSVC, and added preprocessor ↵ | Paolo Bosetti | |
| directives to support these functions under MSVC too | |||
