* string.c (rb_str_ord): extract lower byte. fixed: [ruby-dev:28980]
* lib/jcode.rb (String#succ!): fix for 1.9. fixed: [ruby-dev:28979] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10483 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9dc29ddfd7
commit
0fbcc455bd
@ -1,3 +1,9 @@
|
|||||||
|
Fri Jul 7 17:49:16 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* string.c (rb_str_ord): extract lower byte. fixed: [ruby-dev:28980]
|
||||||
|
|
||||||
|
* lib/jcode.rb (String#succ!): fix for 1.9. fixed: [ruby-dev:28979]
|
||||||
|
|
||||||
Fri Jul 7 14:05:03 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
Fri Jul 7 14:05:03 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* win32/Makefile.sub (config.h): define FUNC_STDCALL/FUNC_CDECL.
|
* win32/Makefile.sub (config.h): define FUNC_STDCALL/FUNC_CDECL.
|
||||||
|
@ -79,9 +79,12 @@ class String
|
|||||||
reg = end_regexp
|
reg = end_regexp
|
||||||
if self =~ reg
|
if self =~ reg
|
||||||
succ_table = SUCC[$KCODE[0,1].downcase]
|
succ_table = SUCC[$KCODE[0,1].downcase]
|
||||||
|
last1 = self[-1].ord
|
||||||
|
last2 = self[-2].ord
|
||||||
begin
|
begin
|
||||||
self[-1] += succ_table[self[-1]]
|
last1 += succ_table[last1]
|
||||||
self[-2] += 1 if self[-1] == 0
|
last2 += 1 if last1 == 0
|
||||||
|
self[-2..-1] = [last2, last1].pack("C*")
|
||||||
end while self !~ reg
|
end while self !~ reg
|
||||||
self
|
self
|
||||||
else
|
else
|
||||||
|
2
string.c
2
string.c
@ -4070,7 +4070,7 @@ rb_str_ord(VALUE s)
|
|||||||
"expacted a characer, but string of size %d given",
|
"expacted a characer, but string of size %d given",
|
||||||
RSTRING(s)->len);
|
RSTRING(s)->len);
|
||||||
}
|
}
|
||||||
c = RSTRING(s)->ptr[0];
|
c = RSTRING(s)->ptr[0] & 0xff;
|
||||||
return INT2NUM(c);
|
return INT2NUM(c);
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user