projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
230880c
)
Tiny tweak.
Jarkko Hietaniemi [Sun, 17 Feb 2002 18:40:24 +0000 (18:40 +0000)]
p4raw-id: //depot/perl@14732
utf8.c
patch
|
blob
|
blame
|
history
diff --git
a/utf8.c
b/utf8.c
index
ae66f81
..
314bbff
100644
(file)
--- a/
utf8.c
+++ b/
utf8.c
@@
-1356,12
+1356,8
@@
Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *norma
}
#endif
}
- else {
- UV c = UNI_TO_NATIVE(*(U8*)s);
- U8 *d = uvchr_to_utf8(ustrp, c);
-
- len = d - ustrp;
- }
+ else
+ len = uvchr_to_utf8(ustrp, UNI_TO_NATIVE(*(U8*)s)) - ustrp;
if (lenp)
*lenp = len;