index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
string.c
Age
Commit message (
Expand
)
Author
2017-08-18
`mrb_str_cat`: `capa` should not be zero to avoid infinite loops.
Yukihiro "Matz" Matsumoto
2017-08-18
`mrb_str_cat`: `capa` should be bigger than `total`.
Yukihiro "Matz" Matsumoto
2017-08-18
`ARY_CAPA` handles capacity for embedded arrays by itself.
Yukihiro "Matz" Matsumoto
2017-08-18
Separate `mrb_str_buf_new` and `mrb_str_new_capa`.
Yukihiro "Matz" Matsumoto
2017-08-18
Remove code duplication in `mrb_str_concat`.
Yukihiro "Matz" Matsumoto
2017-08-18
Merge `str_buf_cat` and `mrb_str_cat`.
Yukihiro "Matz" Matsumoto
2017-08-11
Silence integer type conversion warnings.
Yukihiro "Matz" Matsumoto
2017-08-09
Replaced tabs with spaces
Christopher Aue
2017-07-28
Added mrb_str_index to the mrb API
Christopher Aue
2017-07-12
Use "$!" specifier of `mrb_get_args`.
Yukihiro "Matz" Matsumoto
2017-07-05
Avoid undefined behavior of signed integer overflow; fix #3728
Yukihiro "Matz" Matsumoto
2017-05-13
Make string embad from shared
ksss
2017-05-05
Adjust to the optimum type
ksss
2017-04-06
Make String#replace to check equality before modifying flags.
Yukihiro "Matz" Matsumoto
2017-04-03
Unify `else` clause style
Yukihiro "Matz" Matsumoto
2017-04-03
String#initialize to make a string empty; ref #3574
Yukihiro "Matz" Matsumoto
2017-03-05
String#index shouldn't return nil when "".index ""
ksss
2017-02-28
Fix integer overflow; fix #3473
Yukihiro "Matz" Matsumoto
2017-02-28
Add type check by mrb_get_args(); ref #3476
Yukihiro "Matz" Matsumoto
2017-02-28
Add check before calling str_substr(); ref #3476
Yukihiro "Matz" Matsumoto
2017-02-28
Check if the value is fixnum before mrb_funcall(); fix #3476
Yukihiro "Matz" Matsumoto
2017-02-11
Revert "Optimization for String#* for 1-byte strings"
Tomasz Dabrowski
2017-02-11
String#replace should update s->flags for MRB_STR_NO_UTF.
Yukihiro "Matz" Matsumoto
2017-02-11
Add type cast to pacify warning
Yukihiro "Matz" Matsumoto
2017-02-10
Optimization for String#* for 1-byte strings
Tomasz Dabrowski
2017-02-07
Fix interpolation escaping in String.inspect
Edgar Boda-Majer
2017-01-23
Changed the behavior of mrb_range_beg_len(); close #3411
Yukihiro "Matz" Matsumoto
2017-01-23
Should not make empty strings shared; fix #3407
Yukihiro "Matz" Matsumoto
2017-01-11
String#replace should check replacing string; fix #3374
Yukihiro "Matz" Matsumoto
2017-01-06
Improve capacity enhancing conditions
Yukihiro "Matz" Matsumoto
2017-01-06
Add pointer cast to pacify warnings.
Yukihiro "Matz" Matsumoto
2017-01-06
Move mrb_assert() position.
Yukihiro "Matz" Matsumoto
2017-01-06
Should not deallocate shared string referring static; fix #3373
Yukihiro "Matz" Matsumoto
2017-01-02
Fix memory error on str_buf_cat
ksss
2017-01-02
Small refactoring: should use RSTR_CAPA
ksss
2016-12-31
str_buf_cat(): better size check added; ref #3342
Yukihiro "Matz" Matsumoto
2016-12-31
str_buf_cat(): should allocate at least RSTRING_EMBED_LEN_MAX+1.
Yukihiro "Matz" Matsumoto
2016-12-25
Merge pull request #3364 from ksss/string2
Yukihiro "Matz" Matsumoto
2016-12-23
Check overflow string length
ksss
2016-12-23
Do nothing when empty string
ksss
2016-12-15
Fix crash when exponent is -2147483648
Clayton Smith
2016-12-13
Add assertion to make sure new capacity does not overflow.
Yukihiro "Matz" Matsumoto
2016-12-13
Make sure str->capa is under MRB_INT_MAX; fix #3342
Yukihiro "Matz" Matsumoto
2016-12-12
rename prefix RBASIC_ to MRB_; ref #3340
Yukihiro "Matz" Matsumoto
2016-12-11
Implement Object#freeze
Takashi Kokubun
2016-12-08
Removed unnecessary const macro - const keyword is already a dependency
Felix Jones
2016-12-08
disable define const on VS
Yasuhiro Matsumoto
2016-12-07
Removed the errno declaration from string.c
Felix Jones
2016-12-07
Wrapped string.c errno with ifndef macro for platforms that use inbuilt errno...
Felix Jones
2016-12-03
add MRB_API to mrb_float_read(); ref #3270
Yukihiro "Matz" Matsumoto
[next]