aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 06:55:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 06:55:16 +0000
commitf1fc4bbecbc0a40d27a817187ea435b64160c507 (patch)
tree04e2fe3dd2d2fb09369e59b151b2769244f18184
parent72bf77fb30fbc97e9dcbfe50d0f62f2f40c93ae3 (diff)
downloadruby-f1fc4bbecbc0a40d27a817187ea435b64160c507.tar.gz
* string.c (rb_str_succ): fix for string with non-alphanumeric chars.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--string.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b1e80dab43..84c14a2a2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Dec 25 15:55:14 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * string.c (rb_str_succ): fix for string with non-alphanumeric chars.
+
Tue Dec 25 15:42:49 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (rb_io_external_encoding): should return nil for
diff --git a/string.c b/string.c
index 6ca4ba3c63..7c49b34630 100644
--- a/string.c
+++ b/string.c
@@ -1886,16 +1886,13 @@ rb_str_succ(VALUE orig)
}
n = s - sbeg;
}
- else {
- break;
- }
}
if (c == -1) { /* str contains no alnum */
c = '\001';
s = e;
while ((s = rb_enc_prev_char(sbeg, s, enc)) != 0) {
int limit = 256;
- if (cc == 0) cc = rb_enc_codepoint(s, e, enc);
+ cc = rb_enc_codepoint(s, e, enc);
while ((l = rb_enc_mbcput(++cc, carry, enc)) < 0 && --limit);
if (l > 0) {
if (l == (o = e - s)) goto overlay;