| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-28 | Merge pull request #4538 from shuujii/use-__ENCODING__-in-tests | Yukihiro "Matz" Matsumoto | |
| Use `__ENCODING__` in tests | |||
| 2019-06-28 | Merge pull request #4539 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unnecessary-backticks-in-src-range.c Remove unnecessary backticks in `src/range.c`; ref #2858 | |||
| 2019-06-28 | Remove unnecessary backticks in `src/range.c`; ref #2858 | KOBAYASHI Shuji | |
| 2019-06-28 | Use `__ENCODING__` in tests | KOBAYASHI Shuji | |
| It cannot be used for `String#size` test if judging whether or not `MRB_UTF8_STRING` is defined by result of `String#size`. | |||
| 2019-06-28 | Merge pull request #4535 from shuujii/add-modification-tests-for-immediate-value | Yukihiro "Matz" Matsumoto | |
| Add modification tests for immediate value | |||
| 2019-06-28 | Merge pull request #4536 from komainu8/fix_broken_links | Yukihiro "Matz" Matsumoto | |
| Fix broken links for mruby.org | |||
| 2019-06-27 | Fix broken links for mruby.org | Yasuhiro Horimoto | |
| A part of a fix for issue mruby/mruby.github.io#50 | |||
| 2019-06-27 | Add modification tests for immediate value | KOBAYASHI Shuji | |
| 2019-06-27 | Skip copying delete keys in a hash; fix #4534 | Yukihiro "Matz" Matsumoto | |
| 2019-06-26 | Merge pull request #4533 from shuujii/silence-unused-label-warnings | Yukihiro "Matz" Matsumoto | |
| Silence unused label warnings from gcc; ref #4524 | |||
| 2019-06-26 | Silence unused label warnings from gcc; ref #4524 | KOBAYASHI Shuji | |
| mruby/mruby/src/string.c:1722:4: warning: label 'bytes' defined but not used [-Wunused-label] bytes: ^~~~~ | |||
| 2019-06-26 | Merge pull request #4524 from dearblue/reverse-utf8 | Yukihiro "Matz" Matsumoto | |
| Change to UTF-8 string reversing with in place | |||
| 2019-06-26 | Merge pull request #4532 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-String-byteslice-with-MRB_UTF8_STRING-and-some-edge-cases Fix `String#byteslice` with `MRB_UTF8_STRING` and some edge cases | |||
| 2019-06-26 | Merge pull request #4493 from dearblue/fix-rational-new | Yukihiro "Matz" Matsumoto | |
| Fix rational new on 32 bits mode | |||
| 2019-06-26 | Merge pull request #4492 from dearblue/fix-complex-new | Yukihiro "Matz" Matsumoto | |
| Fix complex new on 32 bits mode | |||
| 2019-06-25 | Fix `String#byteslice` with `MRB_UTF8_STRING` and some edge cases | KOBAYASHI Shuji | |
| Example: $ bin/mruby -e ' p "あa".byteslice(1) p "bar".byteslice(3) p "bar".byteslice(4..0) ' Before this patch: "a" "" RangeError (4..0 out of range) After this patch (same as Ruby): "\x81" nil nil | |||
| 2019-06-25 | Merge pull request #4516 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-struct-RRange-overflow-on-32-bit-CPU-with-MRB_NAN_BOXING Fix `struct RRange` overflow on 32-bit CPU with `MRB_NAN_BOXING` | |||
| 2019-06-25 | Merge pull request #4517 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-statement-in-SET_OBJ_VALUE-with-boxing_word.h Remove unneeded statement in `SET_OBJ_VALUE` with `boxing_word.h` | |||
| 2019-06-25 | Merge pull request #4528 from shuujii/fix-argument-specs-to-Array | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Array` | |||
| 2019-06-25 | Merge pull request #4530 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/compare-obj-pointer-directly-instead-of-using-mrb_obj_eq-in-mrb_gc_unregister Compare obj pointer directly instead of using mrb_obj_eq in mrb_gc_unregister | |||
| 2019-06-25 | Fixed `mrb_iv_remove` with immediate objects; fix #4519 | Yukihiro "Matz" Matsumoto | |
| The #4520 tried to address the issue, but it changes the type of `mrb_check_frozen` argument; close #4520 | |||
| 2019-06-25 | Fixed a bug caused by `to_s` that returns `nil`; fix 4504 | Yukihiro "Matz" Matsumoto | |
| 2019-06-25 | Fix `mrb_str_to_str()` to handle symbols. | Yukihiro "Matz" Matsumoto | |
| 2019-06-25 | Renamed `stacked` to `onstack`; ref #4523 | Yukihiro "Matz" Matsumoto | |
| 2019-06-24 | Compare obj pointer directly instead of using mrb_obj_eq in mrb_gc_unregister | KOBAYASHI Shuji | |
| Because immediate values are not registered. | |||
| 2019-06-23 | Fix argument specs to `Array` | KOBAYASHI Shuji | |
| 2019-06-23 | Merge pull request #4526 from shuujii/refine-Hash-rehash-example | Yukihiro "Matz" Matsumoto | |
| Refine `Hash#rehash` example [ci skip] | |||
| 2019-06-23 | Merge pull request #4523 from dearblue/use-stack | Yukihiro "Matz" Matsumoto | |
| Use stack memory for small name of Struct members | |||
| 2019-06-23 | Merge pull request #4525 from dearblue/utf8len-overflow | Yukihiro "Matz" Matsumoto | |
| Fix potential overflow in `utf8len()` | |||
| 2019-06-22 | Fix the unnecessary `mrb_str_modify()` call | dearblue | |
| Now to be calls `mrb_str_modify()` only once when 2 or more characters. | |||
| 2019-06-22 | Delete the unnecessary block brace in `mrb_str_reverse_bang` | dearblue | |
| 2019-06-22 | Fix string brakes for one UTF-8 charactor | dearblue | |
| 2019-06-22 | Add test for one UTF-8 charactor | dearblue | |
| 2019-06-22 | Change to UTF-8 string reversing with in place | dearblue | |
| Reverses UTF-8 strings without allocated heap for working memory. 1. String before reversing: ``` "!yburmの界世" # byte unit [33, 121, 98, 117, 114, 109, 227, 129, 174, 231, 149, 140, 228, 184, 150] ``` 2. Reverse the byte order of each character: ``` [33, 121, 98, 117, 114, 109, 174, 129, 227, 140, 149, 231, 150, 184, 228] ``` 3. Reverse the whole byte order and complete: ``` [228, 184, 150, 231, 149, 140, 227, 129, 174, 109, 114, 117, 98, 121, 33] # string "世界のmruby!" ``` | |||
| 2019-06-22 | Replacement to function for string reversing | dearblue | |
| 2019-06-22 | Refine `Hash#rehash` example [ci skip] | KOBAYASHI Shuji | |
| Previous example doesn't work because string key (frozen) can't be modified. | |||
| 2019-06-22 | Fix potential overflow in `utf8len()` | dearblue | |
| For example on 32 bit mode, when `p = 0xfffffffd`, `e = 0xfffffffe` and `len = 4`, the sum of `p` and `len` can be to `1`, and comparison with `e` will to be false. As a result, a segmentation fault occurs by referring to address 0. | |||
| 2019-06-22 | Merge pull request #4518 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/add-ISO-section-number-to-Kernel-local_variables Add ISO section number to `Kernel.#local_variables` [ci skip] | |||
| 2019-06-22 | Use stack memory for small name of Struct members | dearblue | |
| 2019-06-22 | Merge pull request #4521 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/move-Kernel-__send__-test-to-core-from-mruby-metaprog Move `Kernel#__send__` test to core from `mruby-metaprog` | |||
| 2019-06-21 | Move `Kernel#__send__` test to core from `mruby-metaprog` | KOBAYASHI Shuji | |
| 2019-06-20 | Add ISO section number to `Kernel.#local_variables` [ci skip] | KOBAYASHI Shuji | |
| 2019-06-19 | Remove unneeded statement in `SET_OBJ_VALUE` with `boxing_word.h` | KOBAYASHI Shuji | |
| `(r).value.bp` and `v` have the same value due to assignment of the line preceding the removed line. | |||
| 2019-06-19 | Merge pull request #4510 from shuujii/remove-unneeded-mrb_str_dup-in-Module-name | Yukihiro "Matz" Matsumoto | |
| Remove unneeded `mrb_str_dup()` in `Module#name` | |||
| 2019-06-19 | Merge pull request #4514 from mimaki/fix-error.h | Yukihiro "Matz" Matsumoto | |
| Fix path of `error.h`. | |||
| 2019-06-18 | Fix `struct RRange` overflow on 32-bit CPU with `MRB_NAN_BOXING` | KOBAYASHI Shuji | |
| 2019-06-18 | Fix path of `error.h`. | Hiroshi Mimaki | |
| 2019-06-17 | Remove unneeded `mrb_str_dup()` in `Module#name` | KOBAYASHI Shuji | |
| `mrb_class_path()` always returns a new string or `nil`. | |||
| 2019-06-17 | Merge pull request #4508 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-cvar-ivar-const-and-method-can-be-removed-to-frozen-object Fix cvar, ivar, const and method can be removed to frozen object | |||
| 2019-06-17 | Merge pull request #4507 from shuujii/fix-index-in-error-message-of-Struct-aref | Yukihiro "Matz" Matsumoto | |
| Fix index in error message of `Struct#[]` | |||
