index
:
ruby.git
master
ruby_1_8_6_287
ruby_1_8_6_369
ruby_1_8_6_383
ruby_1_8_6_383-fedora
ruby_1_9_1_243
ruby_1_9_1_376
ruby_1_9_1_376-epel
ruby_1_9_1_376-fedora
Ruby GIT repository
Jeroen van Meeuwen
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
string.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
* string.c (str_replace_shared): replaces string with sharing.
nobu
2008-02-07
1
-31
/
+51
*
* string.c (rb_str_end_with): compares with the suffix.
nobu
2008-02-07
1
-1
/
+1
*
* string.c (rb_str_succ): use wrapped character as a carry for
akr
2008-01-30
1
-0
/
+4
*
* string.c, parse.y, re.c: use rb_ascii8bit_encoding.
naruse
2008-01-28
1
-1
/
+1
*
* include/ruby/oniguruma.h: precise mbclen API redesigned to avoid
akr
2008-01-27
1
-14
/
+15
*
* string.c (rb_str_inspect): avoid exception by
akr
2008-01-27
1
-3
/
+5
*
* string.c (rb_str_succ): warning suppressed.
akr
2008-01-27
1
-34
/
+18
*
* string.c (rb_str_succ): don't increment/decrement codepoint.
akr
2008-01-27
1
-86
/
+159
*
* string.c (rb_str_new): set US-ASCII and ENC_CODERANGE_7BIT when
naruse
2008-01-26
1
-1
/
+1
*
* string.c (rb_str_usascii_new{,2}: defined.
naruse
2008-01-25
1
-0
/
+21
*
* string.c (rb_str_buf_cat_ascii): use rb_enc_cr_str_buf_cat.
akr
2008-01-25
1
-20
/
+24
*
* include/ruby/intern.h (rb_str_buf_cat_ascii): declared.
akr
2008-01-25
1
-0
/
+20
*
* string.c (rb_enc_cr_str_buf_cat): ASCII incompatible encoding is
akr
2008-01-24
1
-1
/
+7
*
* string.c (rb_str_each_line): use memchr(3) for faster newline
matz
2008-01-23
1
-16
/
+24
*
* string.c (str_make_independent): should set length.
nobu
2008-01-23
1
-2
/
+9
*
* string.c (str_mod_check, str_nth, str_offset): consitfied.
nobu
2008-01-23
1
-14
/
+13
*
* configure.in (MINIRUBY): remove -I$(EXTOUT)/$(arch) from
matz
2008-01-22
1
-3
/
+8
*
* string.c (rb_str_each_char): iterates over a shadow.
nobu
2008-01-22
1
-9
/
+4
*
* parse.y (rb_intern3): do not call rb_enc_mbclen() if *m is
matz
2008-01-21
1
-1
/
+19
*
* string.c (rb_str_each_char): move forward. [ruby-dev:33231]
nobu
2008-01-21
1
-2
/
+2
*
* string.c (rb_str_each_char): advance offset before get next char
nobu
2008-01-20
1
-1
/
+2
*
* string.c (rb_str_each_char): performance improvement, and stop if
nobu
2008-01-20
1
-3
/
+14
*
* string.c (coderange_scan): don't call mbclen functions for ASCII
akr
2008-01-19
1
-16
/
+68
*
* string.c (rb_str_dump): preserve the encoding of source string
matz
2008-01-18
1
-1
/
+10
*
* string.c (string.c): call rb_str_buf_append to update encoding of
akr
2008-01-11
1
-19
/
+15
*
* string.c (rb_str_append): performance improvement.
nobu
2008-01-11
1
-7
/
+7
*
update rdoc: force_encoding doesn't accept nil.
akr
2008-01-11
1
-2
/
+0
*
* string.c (rb_enc_cr_str_buf_cat): fix self appending.
akr
2008-01-09
1
-3
/
+3
*
* string.c (rb_enc_cr_str_buf_cat, rb_str_buf_append): deal with self
nobu
2008-01-09
1
-5
/
+7
*
* string.c (rb_enc_cr_str_buf_cat): do not recalculate coderange
matz
2008-01-09
1
-2
/
+4
*
* string.c (str_gsub): avoid appending empty pre-match substr.
akr
2008-01-08
1
-1
/
+3
*
* string.c (rb_str_buf_append): fix append itself.
akr
2008-01-07
1
-1
/
+7
*
* string.c (STR_ENC_GET): defined. same as rb_enc_get without
akr
2008-01-07
1
-99
/
+76
*
* string.c (Init_String): sym_match arity spec was wrong. a patch
matz
2008-01-07
1
-1
/
+1
*
* string.c (str_gsub): move rb_enc_get(str) to out of loop.
akr
2008-01-07
1
-4
/
+6
*
* encoding.c (rb_enc_internal_get_index): extracted from
akr
2008-01-07
1
-1
/
+1
*
* string.c (coderange_scan): avoid rb_enc_to_index.
akr
2008-01-06
1
-6
/
+6
*
* string.c (coderange_scan): optimize ASCII-8BIT string.
akr
2008-01-06
1
-5
/
+26
*
* $Date$ keyword removed to avoid inclusion of locale dependent
akr
2008-01-06
1
-1
/
+0
*
* include/ruby/encoding.h (rb_enc_str_buf_cat): declared.
akr
2008-01-06
1
-79
/
+153
*
* string.c (rb_str_resize): copy if old data is not empty
nobu
2008-01-05
1
-1
/
+1
*
* string.c (rb_str_resize): copy at old length but not new length.
nobu
2008-01-05
1
-1
/
+1
*
update rdoc.
akr
2008-01-05
1
-2
/
+2
*
* string.c (trnext): should enable backslash escape.
matz
2008-01-04
1
-0
/
+3
*
* string.c (rb_str_substr): offset movement bug. a patch from
matz
2008-01-01
1
-2
/
+2
*
* string.c (rb_str_resize): embeds if ptr is null. [ruby-dev:32819]
nobu
2007-12-31
1
-4
/
+16
*
* string.c (IS_7BIT): removed.
akr
2007-12-31
1
-19
/
+35
*
fix typos.
akr
2007-12-31
1
-4
/
+4
*
update force_encoding document.
akr
2007-12-30
1
-0
/
+2
*
* re.c (rb_reg_regsub): returns the given string itself if nothing
nobu
2007-12-29
1
-2
/
+13
[prev]
[next]