| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |||
| 2014-04-25 | better integer size assertion suggested by usak | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | eliminate plain int except for a few cases like arena_index | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | remove -Wsign-compare warnings | Yukihiro "Matz" Matsumoto | |
| 2014-04-21 | remove `mrb_str_buf_cat` | cremno | |
| It does the same as `mrb_str_cat`. | |||
| 2014-04-17 | Use mrb_regexp_p to check regexp. | take_cheeze | |
| 2014-04-16 | Move src/re.h to include/mruby/re.h . | take_cheeze | |
| 2014-04-15 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-04-12 | mrb_str_dup use sheard string instead of new string | ksss | |
| 2014-04-04 | simplify string equality check | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | downto, upto, step to return Enumerator | Yukihiro "Matz" Matsumoto | |
| 2014-03-27 | an int literal may have multiple underscores inside | Yukihiro "Matz" Matsumoto | |
| 2014-03-27 | allow underscores in integer literals; close #1960 | Yukihiro "Matz" Matsumoto | |
| 2014-03-25 | Fix unnecessary string macro | ksss | |
| 2014-03-25 | Use mrb_int instead of int | cubicdaiya | |
| 2014-03-24 | src/string.c RESIZE_CAPA use safe name variables | ksss | |
| This has a possibility of naming conflicts | |||
| 2014-03-22 | need not to add assertion in STR_SET_LEN() where n is mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-22 | Use bool-macro instead of magic-number | cubicdaiya | |
| 2014-03-19 | string functions arguments changed from mrb_int to size_t that would take ↵ | Yukihiro "Matz" Matsumoto | |
| strlen() | |||
| 2014-03-16 | unify indent style | cubicdaiya | |
| 2014-03-15 | string length type to be mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-10 | set bit field for mrb_bool | ksss | |
| 2014-03-09 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-08 | use mrb_str_cat_lit for literals | cremno | |
| 2014-03-09 | remove invocation of strlen() on buffer of strings; with refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-03-08 | Make type casts safer. | Masaki Muranaka | |
| 2014-03-06 | make embed string when create literals | ksss | |
| 2014-03-06 | embed small string | ksss | |
| use flags 4 for *this object is embed* use flags 8~64 for *embed string length* | |||
| 2014-03-04 | fix off-by-one error in String#rindex(fixnum) | cubicdaiya | |
| null-terminated string should not be included in search targets. | |||
| 2014-03-04 | add new macros for MRB_STR_SHARED operations, based on 0f7aecf from @ksss; ↵ | Yukihiro "Matz" Matsumoto | |
| ref #1782 | |||
| 2014-02-28 | fix SEGV bug for mrb_str_new_static | cubicdaiya | |
| mrb_str_new_static causes seg-fault when 3rd argument is negative. | |||
| 2014-02-28 | fix SEGV bug for mrb_str_new | cubicdaiya | |
| mrb_str_new causes seg-fault when 3rd argument is negative. | |||
| 2014-02-28 | make mrb_str_dump a bit faster | cubicdaiya | |
| 2014-02-26 | use mrb_str_new_lit instead of mrb_str_new for C string literals | cubicdaiya | |
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
