summaryrefslogtreecommitdiffstats
path: root/ext/strscan
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-06 12:33:45 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-06 12:33:45 +0000
commit7ae21b1db0303625ccb7f460619e2f68a248d2ab (patch)
tree0b19582f07ef27790bde97603bd271efb88bcb35 /ext/strscan
parent600b64dd3af65d9b87f3d7fe634106564f0abb04 (diff)
downloadruby-7ae21b1db0303625ccb7f460619e2f68a248d2ab.tar.gz
ruby-7ae21b1db0303625ccb7f460619e2f68a248d2ab.tar.xz
ruby-7ae21b1db0303625ccb7f460619e2f68a248d2ab.zip
* array.c (rb_ary_cycle): typo in rdoc. a patch from Yugui
<yugui@yugui.sakura.ne.jp>. [ruby-dev:31748] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/strscan')
-rw-r--r--ext/strscan/strscan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c
index 44cd0f413..ac07b3978 100644
--- a/ext/strscan/strscan.c
+++ b/ext/strscan/strscan.c
@@ -661,7 +661,7 @@ strscan_getch(VALUE self)
if (EOS_P(p))
return Qnil;
- len = rb_enc_mbclen(CURPTR(p), enc);
+ len = rb_enc_mbclen(CURPTR(p), S_PEND(p), enc);
if (p->curr + len > S_LEN(p)) {
len = S_LEN(p) - p->curr;
}