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 (rb_enc_cr_str_buf_cat): do not use C++ comment.
shyouhei
2008-04-22
1
-1
/
+1
*
* string.c (rb_str_intern): need not to check if tainted.
matz
2008-04-06
1
-3
/
+0
*
* re.c (rb_memsearch_ss): simple shift search.
naruse
2008-03-17
1
-1
/
+1
*
* encoding.c (rb_enc_associate_index): pass unnecessary enc_capable().
matz
2008-03-15
1
-5
/
+9
*
* include/ruby/ruby.h (inttypes.h): includes always if available.
nobu
2008-03-14
1
-4
/
+0
*
* string.c (UNALIGNED_WORD_ACCESS): IA64 cannot access unaligned word.
nobu
2008-03-14
1
-1
/
+1
*
* trunk/configure.in (AC_CHECK_HEADERS): stdint.h is not needed to check.
nobu
2008-03-13
1
-4
/
+4
*
* configure.in (stdint.h): check if presence.
nobu
2008-03-12
1
-6
/
+101
*
* string.c (hash): replaced by MurmurHash described in
matz
2008-03-11
1
-113
/
+32
*
* string.c (rb_str_comparable): empty strings in any encoding are
matz
2008-03-11
1
-4
/
+7
*
* string.c (rb_str_index): if t == s + pos, the character beginning
naruse
2008-03-09
1
-1
/
+1
*
fix doc.
akr
2008-03-09
1
-11
/
+13
*
* string.c (search_nonascii): Use VALUE instead of unsigned long
naruse
2008-03-08
1
-35
/
+33
*
* string.c (count_utf8_lead_bytes_with_ulong): fix shift size.
naruse
2008-03-05
1
-4
/
+3
*
* string.c (is_utf8_lead_byte, count_utf8_lead_bytes_with_ulong):
naruse
2008-03-05
1
-35
/
+35
*
* numeric.c (fix_to_s): avoid rb_scan_args() when no argument
matz
2008-03-05
1
-11
/
+21
*
* string.c (sym_inspect): use rb_str_inspect() instead of
matz
2008-03-01
1
-1
/
+1
*
* string.c (tr_setup_table, rb_str_split_m, rb_str_chomp_bang):
nobu
2008-03-01
1
-25
/
+14
*
* string.c (rb_str_coderange_scan_restartable): should not return
matz
2008-03-01
1
-3
/
+3
*
* test/ruby/test_m17n_comb.rb (TestM17NComb::test_str_chomp): test
matz
2008-02-29
1
-1
/
+1
*
* string.c (rb_str_chomp_bang): now works on UTF-16.
matz
2008-02-29
1
-24
/
+63
*
* time.c (time_strftime): format should be ascii compatible.
matz
2008-02-29
1
-0
/
+11
*
* string.c (rb_str_rpartition): calculation was done in byte indexing.
matz
2008-02-29
1
-3
/
+4
*
* string.c (str_new): remove encoding assumption of empty string.
naruse
2008-02-28
1
-3
/
+0
*
* string.c (rb_enc_str_copy): removed.
naruse
2008-02-28
1
-12
/
+0
*
* string.c (rb_str_reverse_bang): removed unsed variables.
nobu
2008-02-28
1
-1
/
+0
*
* include/ruby/encoding.h (rb_str_coderange_scan_restartable): added
nobu
2008-02-28
1
-9
/
+8
*
* string.c (rb_str_coderange_scan_restartable): coderange scaning
naruse
2008-02-27
1
-0
/
+55
*
* string.c (str_sublen): removed.
naruse
2008-02-23
1
-12
/
+6
*
* string.c (rb_enc_cr_str_copy_for_substr): renamed from
naruse
2008-02-23
1
-22
/
+37
*
* fix missing STR_ENC_GET.
naruse
2008-02-22
1
-1
/
+1
*
* add ascii incompatible case.
naruse
2008-02-22
1
-1
/
+2
*
* string.c (rb_enc_cr_str_copy): check string's coderange is 7bit or
naruse
2008-02-22
1
-2
/
+11
*
* encoding.c (rb_enc_mbclen): return minlen instead of 1 when
akr
2008-02-22
1
-7
/
+6
*
* string.c (rb_str_inspect): string of ascii incompatible encoding
naruse
2008-02-22
1
-0
/
+1
*
* string.c (rb_str_substr): copy encoding although empty string.
naruse
2008-02-22
1
-1
/
+4
*
* string.c (rb_str_times): empty string's coderange is CODERANGE_7BIT.
naruse
2008-02-21
1
-3
/
+7
*
* string.c: replace rb_enc_copy by rb_enc_cr_str_copy or
naruse
2008-02-21
1
-21
/
+29
*
* string.c (rb_enc_str_copy): added for wrapper for rb_enc_copy.
naruse
2008-02-20
1
-4
/
+19
*
* string.c (rb_enc_strlen_cr): get length with coderange scan.
naruse
2008-02-19
1
-2
/
+59
*
* string.c (rb_str_each_line): fix newline size.
akr
2008-02-18
1
-1
/
+1
*
* encoding.c (ENC_CODERANGE_AND): fix broken case. [ruby-dev:33826]
naruse
2008-02-17
1
-1
/
+4
*
* encoding.c (ENC_CODERANGE_AND): added.
naruse
2008-02-17
1
-2
/
+3
*
* string.c (str_strlen): rb_enc_strlen doesn't fail.
akr
2008-02-17
1
-8
/
+2
*
* string.c (str_sublen): use rb_enc_strlen.
akr
2008-02-17
1
-11
/
+3
*
* string.c (rb_str_times): reduce loop overhead.
akr
2008-02-17
1
-4
/
+9
*
* include/ruby/re.h (struct rmatch_offset): new struct for character
akr
2008-02-16
1
-9
/
+11
*
* string.c (rb_str_substr): optimized for UTF-8.
naruse
2008-02-16
1
-0
/
+59
*
* string.c (str_strlen): revert r15507. [ruby-dev:33810]
naruse
2008-02-16
1
-3
/
+0
*
* string.c (str_strlen): little more optimize.
naruse
2008-02-16
1
-9
/
+11
[next]