| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-05-23 | Merge branch 'Xcode' of github.com:pbosetti/mruby into XCode | Paolo Bosetti | |
| 2012-05-24 | made mrb_get_args() better (optinal args, type checks); close #173 #176 | Yukihiro Matsumoto | |
| 2012-05-22 | Created Xcode 4 project, using the make target to build the tools, and with ↵ | Paolo Bosetti | |
| a native Xcode target to build a hello world example. | |||
| 2012-05-23 | remove warning for open paren after space | Yukihiro Matsumoto | |
| 2012-05-23 | allow empty paren as a valid expr | Yukihiro Matsumoto | |
| 2012-05-23 | test t/*.rb spacing fix | Yukihiro Matsumoto | |
| 2012-05-23 | add dependency from keywords to lex.def | Yukihiro Matsumoto | |
| 2012-05-22 | Merge pull request #183 from thecodeshop/cmake-miss | Yukihiro "Matz" Matsumoto | |
| Add CMake support authorship miss | |||
| 2012-05-22 | Add CMake support authorship miss | Jon | |
| 2012-05-23 | cast style consistency | Yukihiro Matsumoto | |
| 2012-05-23 | add CMakeFiles and CMakeCache.txt to .gitignore | Yukihiro Matsumoto | |
| 2012-05-22 | Merge pull request #180 from mitchblank/master | Yukihiro "Matz" Matsumoto | |
| call mrb_close() in tools and test programs | |||
| 2012-05-23 | update the desciption regarding comforming to ISO, and provided tools | Yukihiro Matsumoto | |
| 2012-05-23 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-05-22 | Merge pull request #178 from monaka/pr-avoid-redundant-redeclaration-20110522 | Yukihiro "Matz" Matsumoto | |
| Avoid warning: redundant redeclaration of ‘OnigEncDefaultCharEncoding’ | |||
| 2012-05-23 | explicit normalization -0.0 to 0.0 | Yukihiro Matsumoto | |
| 2012-05-22 | Merge pull request #182 from thecodeshop/cmake | Yukihiro "Matz" Matsumoto | |
| Add CMake build infrastructure | |||
| 2012-05-22 | Add native and cross compiling CMake build support | Jon | |
| 2012-05-22 | First cmake build system. Works on Linux. | Beoran | |
| 2012-05-22 | remove unused prototype from hash.h | Yukihiro Matsumoto | |
| 2012-05-22 | remove unused MT code from hash.h | Yukihiro Matsumoto | |
| 2012-05-22 | should mark iv from MRB_TT_DATA | Yukihiro Matsumoto | |
| 2012-05-22 | change example code to do mrb_close() | Mitchell Blank Jr | |
| I was hoping this would cause valgrind to complain less, but there is still a lot of memory leaked (does mrb_close() actually free all of the managed blocks?) Anyway this helps somewhat and is good practice | |||
| 2012-05-22 | Merge remote-tracking branch 'upstream/master' | Mitchell Blank Jr | |
| Conflicts: src/time.c | |||
| 2012-05-22 | Avoid warning: redundant redeclaration of ‘OnigEncDefaultCharEncoding’ | Masaki Muranaka | |
| 2012-05-22 | always use value.i for MRB_TT_FALSE | Yukihiro Matsumoto | |
| 2012-05-21 | use mrb_int for struct tm fractions | Yukihiro Matsumoto | |
| 2012-05-21 | use mrb's allocator; thanks to @mitchblank | Yukihiro Matsumoto | |
| 2012-05-20 | Use integer constants to initialize mrb_int | Mitchell Blank Jr | |
| As per monaka's comment here... https://github.com/mruby/mruby/pull/175 ...changing these initializations of mrb_int values to use integer constants | |||
| 2012-05-20 | make mrb_time_local() arguments consistent | Mitchell Blank Jr | |
| * mrb_time_gm() uses mrb_int * Same for mrb_time_initialize() * The parameters to time_mktime() are mrb_int, and that's what these values are passed to So I don't see why mrb_time_local() works on mrb_float instead. Lets make it consistent with the other methods defined in time.c | |||
| 2012-05-21 | print description on exceptions | Yukihiro Matsumoto | |
| 2012-05-21 | wrong stack position in rescue clause | Yukihiro Matsumoto | |
| 2012-05-20 | Merge pull request #171 from mitchblank/cplusplus | Yukihiro "Matz" Matsumoto | |
| More C++ compilability work: mrb_obj_alloc void* conversions | |||
| 2012-05-20 | More C++ compilability work: mrb_obj_alloc void* conversions | Mitchell Blank Jr | |
| One of the biggest set of changes needed to make C++ compile, is that you can't autoconvert "void*" to a different pointer type without a cast (you can of course, convert pointers *to* "void*"!) For the first part, convert the users of "mrb_obj_alloc". Since it has to return something, make it RBasic* (that's what mrb_obj_alloc() is operating on anyway). This way, even in C you'll get a warning if you don't cast it. For places where there are a lot of similar calls to mrb_obj_alloc(), this can be easily hidden through a macro. I did this in string.c: #define mrb_obj_alloc_string(mrb) ((struct RString *) mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class)) I also updated the mrb_object() macro to also return a RBasic* -- my previous commit changed that from "void*" -> "RObject*", but I figure it should be consistent with mrb_obj_alloc() | |||
| 2012-05-20 | add "all" to test dependency | Yukihiro Matsumoto | |
| 2012-05-20 | ANSIfy name2ctype.h | Yukihiro Matsumoto | |
| 2012-05-20 | 'not (2)' should not raise warning | Yukihiro Matsumoto | |
| 2012-05-20 | waring refactoring; print line number | Yukihiro Matsumoto | |
| 2012-05-20 | Merge pull request #169 from mitchblank/cplusplus | Yukihiro "Matz" Matsumoto | |
| Part 1 of C++ compilability | |||
| 2012-05-20 | Merge pull request #168 from k-tsj/add-cast | Yukihiro "Matz" Matsumoto | |
| Add cast to remove "cast from pointer to integer of different size" warning | |||
| 2012-05-20 | use mrb_assoc_new to generate a key-value pair | Yukihiro Matsumoto | |
| 2012-05-20 | Merge pull request #167 from bovi/fix-hash-shift | Yukihiro "Matz" Matsumoto | |
| Fix Hash#shift return value from Hash to Array | |||
| 2012-05-20 | C++ compilability - avoid 'goto' across a variable initialization | Mitchell Blank Jr | |
| C++ is pickier about when a 'goto' can cross a variable being delcared. The fix is to just add a set of braces to restrict the variable's scope. Without this, g++ will fail with: regcomp.c:3057: error: jump to label 'set_call_attr' regcomp.c:3087: error: from here regcomp.c:3041: error: skips initialization of 'int gnum' | |||
| 2012-05-20 | Fix wrong cast | Kazuki Tsujimoto | |
| 2012-05-20 | C++ compilability: don't use "node" as both a type and a member | Mitchell Blank Jr | |
| I originally solved this by renaming the "node" type to "node_t", but Matz didn't like that. He suggested renaming the member variable "nd" instead: https://github.com/mruby/mruby/pull/144#issuecomment-5743153 | |||
| 2012-05-20 | C++ compilability -- don't jump across variable initialization | Mitchell Blank Jr | |
| C++ is picker than C about when you can "goto" across a variable being defined. The fix is to just minimize the variable's scope inside an extra set of brackets. Without this change, g++ has the following errors: transcode.c:590: error: jump to label 'resume_label3' transcode.c:514: error: from here transcode.c:582: error: crosses initialization of 'const unsigned char* p' transcode.c:2124: error: jump to label 'set_encs' transcode.c:2184: error: from here transcode.c:2088: error: skips initialization of 'const char* err' transcode.c:2089: error: skips initialization of 'size_t error_len' transcode.c:2090: error: skips initialization of 'mrb_value bytes' transcode.c:2091: error: skips initialization of 'mrb_value dumped' transcode.c:2092: error: skips initialization of 'size_t readagain_len' transcode.c:2093: error: skips initialization of 'mrb_value bytes2' | |||
| 2012-05-19 | "volatile" no longer needed here | Mitchell Blank Jr | |
| See Matz's comment here: https://github.com/mruby/mruby/pull/144#issuecomment-5754054 | |||
| 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 | |
