| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-09-03 | get rid of shadowing variables | cremno | |
| Mostly by renaming the shadowing variable. If a shadowing variable was deleted, the shadowed one can be used instead. | |||
| 2014-08-29 | Remove unused macro. | Tatsuhiko Kubo | |
| OutOfRange() is no longer used. | |||
| 2014-08-29 | Merge pull request #2570 from cubicdaiya/issues/unify_duplicated_functions | Yukihiro "Matz" Matsumoto | |
| Unify and rename duplicated functions (noregexp() and regexp_check()). | |||
| 2014-08-29 | Fix mismatches for MRB_API declarations. | Tatsuhiko Kubo | |
| 2014-08-28 | Rename functions for avoinding symbol confiliction. | Tatsuhiko Kubo | |
| Add prefix(mrb) to noregexp() and regexp_check(). | |||
| 2014-08-28 | Unify duplicated functions (noregexp() and regexp_check()). | Tatsuhiko Kubo | |
| 2014-08-27 | Add a missing space after ",". | Tatsuhiko Kubo | |
| 2014-08-12 | changed some string method's mrb-aspec | kkkkkt | |
| 2014-08-11 | mrb_str_bytesize is a carbon copy of mrb_str_size. remove it. | Tomoyuki Sahara | |
| mruby core does not support any character encodings but ASCII. | |||
| 2014-08-11 | changed mrb_str_size and mrb_str_bytesize comments. | kkkkkt | |
| 2014-08-05 | revert accidental constify. | Tomoyuki Sahara | |
| 2014-08-04 | change linkage of mrb_str_size to internal | cremno | |
| Use RSTRING_LEN to get the length. | |||
| 2014-08-04 | add MRB_API modifiers to mruby API functions | Yukihiro "Matz" Matsumoto | |
| 2014-07-13 | use C style comments instead of C++ style comments | Tatsuhiko Kubo | |
| 2014-07-09 | remove unused `mrb_str_body` | cremno | |
| 2014-06-18 | update String#slice doc | Yukihiro "Matz" Matsumoto | |
| 2014-06-15 | Unsupported Regex in mrb_str_aref_m() | Jun Hiroe | |
| 2014-06-12 | Merge pull request #2389 from ksss/str-mem-leaks | Yukihiro "Matz" Matsumoto | |
| Fix memory leaks in String | |||
| 2014-06-11 | str_replace: self should not be shared and nofree | ksss | |
| 2014-06-11 | Refactor how to use RSTR_NOFREE_P macro | Jun Hiroe | |
| 2014-06-11 | Add NOFREE macros | Jun Hiroe | |
| 2014-06-08 | Check `RSTRING_EMBED_LEN_MAX` with static assert. | take_cheeze | |
| 2014-06-07 | move String#clear to mruby-string-ext; ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | move STR_* macros to mruby/string.h with renaming | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | clear shared and nofree flags; ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | inline str_discard(); ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-07 | Implement String#clear | Jun Hiroe | |
| 2014-06-05 | don't (re-)define `ascii_isspace` and `isascii` | cremno | |
| `ISSPACE` and `ISASCII` can be used instead. | |||
| 2014-06-06 | move IS_EVSTR macro that should be private to src/string.c | Yukihiro "Matz" Matsumoto | |
| 2014-05-18 | Add a space aftre bracket. | yui-knk | |
| 2014-05-17 | Refactor mrb_str_intern() in string.c | Jun Hiroe | |
| 2014-05-17 | Refactor mrb_str_equal_m in string.c | Jun Hiroe | |
| 2014-05-17 | Refactor mrb_str_new() in string.c | Jun Hiroe | |
| 2014-05-17 | Fix indents | Jun Hiroe | |
| 2014-05-05 | Merge pull request #2194 from suzukaze/refactor-string.c2 | Yukihiro "Matz" Matsumoto | |
| Refactor string.c | |||
| 2014-05-05 | Merge pull request #2195 from suzukaze/fix-indent-string.c | Yukihiro "Matz" Matsumoto | |
| Fix indents in mrb_str_inspect() of string.c | |||
| 2014-05-05 | Fix indents in mrb_str_inspect() of string.c | Jun Hiroe | |
| 2014-05-05 | Refactor mrb_str_hash() | Jun Hiroe | |
| 2014-05-05 | Refacotr mrb_str_substr() | Jun Hiroe | |
| 2014-05-05 | Refactor mrb_str_upcase_bang | Jun Hiroe | |
| 2014-05-05 | Refactor mrb_str_split_m() | Jun Hiroe | |
| 2014-05-05 | Refactor mrb_str_downcase_bang() | Jun Hiroe | |
| 2014-05-05 | Refactor mrb_str_capitalize_bang() | Jun Hiroe | |
| 2014-04-29 | Merge pull request #2155 from cremno/define-resize_capa-as-a-function | Yukihiro "Matz" Matsumoto | |
| define `resize_capa` as a function | |||
| 2014-04-29 | Merge pull request #2157 from cremno/remove-mrb_str_offset | Yukihiro "Matz" Matsumoto | |
| remove `mrb_str_offset` | |||
| 2014-04-29 | remove `mrb_str_offset` | cremno | |
| 2014-04-29 | remove `DBL_DIG` fallback definition | cremno | |
| 2014-04-29 | include the missing header for `DBL_DIG` | cremno | |
| 2014-04-29 | define `resize_capa` as a function | cremno | |
| This increases readability and maintainability, and it also doesn't use reserved identifiers. | |||
| 2014-04-27 | rename `mrb_str_buf_append` to `mrb_str_cat_str` | cremno | |
| The new name is better and less confusing, because: - `mrb_str_append` calls `mrb_str_to_str` and this function doesn't - `mrb_str_buf_append` _is_ `mrb_str_cat` for `mrb_value` strings | |||
