| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-15 | normalize NaN after division that may generate NaN; fix #1712 | Yukihiro "Matz" Matsumoto | |
| 2014-02-14 | clearn up warning in hash.c | Li Yazhou | |
| /home/fleuria/code/mruby/src/hash.c:159:1: warning: ‘mrb_hash_dp`defined but not used [-Wunused-function] mrb_hash_dup(mrb_state *mrb, mrb_value hash) ^ this commit defines Hash#dup to take advantage of mrb_hash_dup, however it seems that Hash#dup is not in ISO standard. | |||
| 2014-02-14 | Merge pull request #1702 from cremno/hash-hash-ext-changes | Yukihiro "Matz" Matsumoto | |
| hash / hash-ext: various small changes | |||
| 2014-02-13 | mrb_str_cat2: deprecated since 0cedf8f | cremno | |
| 2014-02-13 | hash / hash-ext: various small changes | cremno | |
| src/hash.c: - mrb_hash_(aget|aset|dup|delete): internal linkage - remove documentation of methods which are not implemented (in here) - remove #assoc; unused, not in ISO spec - remove #rassoc: same, implementation is also wrong hash-ext mrbgem: - remove header "mruby/khash.h" - remove mrb_hash_values_at (move code into hash_values_at, i: long -> int) - less whitespace in gem_init function | |||
| 2014-02-13 | remove direct inclusion of mruby/version.h from version.c; #1698 | Yukihiro "Matz" Matsumoto | |
| 2014-02-12 | Merge pull request #1697 from cremno/array-changes | Yukihiro "Matz" Matsumoto | |
| array implementation: several small changes | |||
| 2014-02-12 | Merge pull request #1695 from cremno/clang-and-icl-define-direct-threaded | Yukihiro "Matz" Matsumoto | |
| Clang and ICC/ICL: define DIRECT_THREADED | |||
| 2014-02-12 | array implementation: several small changes | cremno | |
| src/array.c: - make various functions without declaration in the mruby headers static - removed all uncessary int casts and two useless comments mrb_ary_new_from_values: move to similar functions mrb_check_array_type: fix indentation include/mruby/array.h: mrb_shared_array: padding (default "mrbconf.h" on an usual 64-bit system) sizeof(mrb_int)==sizeof(int)==4 && sizeof(mrb_value*)==8 both: mrb_ary_aget: remove declaration in header and make static nobody uses it which is not surprising since it has 1 req arg! mrb_assoc_new: small optimization and move to similar functions mrb_ary_len: re-implement as static inline function (it is used by mrbgems) programmers should directly use RARRAY_LEN instead | |||
| 2014-02-11 | Clang and ICC/ICL: define DIRECT_THREADED | cremno | |
| This is most likely only needed on Windows be- cause __GNUC__ is not defined by both compilers. It might fail with some unusual configurations. If that is the case, feel free to open an issue. | |||
| 2014-02-11 | add RUBY_ENGINE; ref #576 | Yukihiro "Matz" Matsumoto | |
| 2014-02-09 | Fix Kernel#global_variables for $1-$9 | Pavel | |
| 2014-02-09 | initialize ci->stackent at the top; #1691 | Yukihiro "Matz" Matsumoto | |
| 2014-02-09 | Merge branch 'original2' of https://github.com/miura1729/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| miura1729-original2 | |||
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
| 2014-02-09 | Store raw stack address in callinfo instead of offset from stbas | Miura Hideki | |
| 2014-02-08 | made mrb_define_class to return existing class, with heavy refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-02-08 | rename mrb_name_class and make it static | Yukihiro "Matz" Matsumoto | |
| 2014-02-07 | forgot to add new files | Yukihiro "Matz" Matsumoto | |
| 2014-02-07 | move version info from gems to core; ref #576 #1684 | Yukihiro "Matz" Matsumoto | |
| 2014-02-06 | Merge pull request #1688 from cubicdaiya/issues/unnecessary_semicolon | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary semicolon | |||
| 2014-02-06 | remove unnecessary semicolon | cubicdaiya | |
| 2014-02-06 | use mrb_str_new_lit() more widely | Yukihiro "Matz" Matsumoto | |
| 2014-02-06 | introduce mrb_str_new_lit() to create strings from C string litrals | Yukihiro "Matz" Matsumoto | |
| 2014-02-05 | Add global constant MRUBY_COPYRIGHT | MATSUMOTO Ryosuke | |
| 2014-02-05 | replace Kernel.show_version with MRUBY_DESCRIPTION | MATSUMOTO Ryosuke | |
| 2014-02-05 | Add pluggable versioning by mruby-version | MATSUMOTO Ryosuke | |
| 2014-02-05 | Fiber.new{break} caused SEGV | Yukihiro "Matz" Matsumoto | |
| 2014-02-04 | better codedump format | Yukihiro "Matz" Matsumoto | |
| 2014-02-03 | add Float#nan? | Tomoyuki Sahara | |
| 2014-02-01 | fix NODE_SPLAT codegen | h2so5 | |
| 2014-01-31 | use mrb_bool, FALSE and TRUE more | cremno | |
| It doesn't matter to me if one is using FALSE/TRUE instead of 1/0 but I prefer a type (alias) which emphasizes boolean vars to int. I changed 1/0 to FALSE/TRUE anyway. | |||
| 2014-01-31 | rework mruby-objectspace and gc.[ch] | cremno | |
| - functions should have C linkage (for C++ code) - add prefix to each_object_callback - use more appropriate variable types / initialization - ObjectSpace::count_objects has 1 opt. arg. - prefer mrb_intern_lit to mrb_intern_cstr for str. lit. - mruby/value.h is included by mruby.h - adjust coding style | |||
| 2014-01-31 | remove conflict | Yukihiro "Matz" Matsumoto | |
| 2014-01-31 | Merge pull request #1671 from cremno/extern-cleanup | Yukihiro "Matz" Matsumoto | |
| clean up external symbols | |||
| 2014-01-31 | Merge pull request #1669 from cremno/copyright-2014 | Yukihiro "Matz" Matsumoto | |
| update copyright year | |||
| 2014-01-31 | reindent parse.y | h2so5 | |
| 2014-01-31 | clean up external symbols | cremno | |
| remove unused and unneeded: - sysexit_status - type (a global variable) add mrb_ prefix to: - codedump_all - class_instance_method_list - parser_dump make various functions static, incl.: - yyparse - make_exception | |||
| 2014-01-30 | Happy new year! (update copyright year) | cremno | |
| Let's not wait until May this time (f0a9b95af3d542ac1db7fcb4a3d77990a284c185)! | |||
| 2014-01-30 | etc.c: small cleanup (delete unused functions) | cremno | |
| mrb_data_object_alloc: unnecessary cast mrb_lastline_get: mruby doesn't support $_, weird and unused code mrb_exec_recursive: see 4e46abb86914b36e70b5f3ad0826d0b648e9b4ef mrb_block_proc: unused, doesn't really do anything (or needs to be rewritten) mrb_obj_to_sym: actually use id (and MSVC detected unreachable code) | |||
| 2014-01-31 | refactor parser lineno adjustment; ref #1667 | Yukihiro "Matz" Matsumoto | |
| 2014-01-30 | add semicolon after the statements | Yukihiro "Matz" Matsumoto | |
| 2014-01-30 | Merge pull request #1667 from h2so5/backtrace-lineno | Yukihiro "Matz" Matsumoto | |
| more accurate backtrace lineno | |||
| 2014-01-30 | Array#[]= is now range aware | Yukihiro "Matz" Matsumoto | |
| 2014-01-30 | more accurate backtrace lineno | h2so5 | |
| 2014-01-29 | move range aware aget to array.c from mruby-array-ext gem | Yukihiro "Matz" Matsumoto | |
| 2014-01-25 | clone Class/Module rightly | h2so5 | |
| 2014-01-23 | add callback invocation from OP_DEBUG | Yukihiro "Matz" Matsumoto | |
| 2014-01-21 | escape non-ascii characters correctly in String#inspect | h2so5 | |
| 2014-01-21 | describe call stack overwritten problem of mrb_get_backtrace; close #1661 | Yukihiro "Matz" Matsumoto | |
