This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dcb720
)
Three variables in S_scan_trans only hold flags for op_private, so can
author
Nicholas Clark
<nick@ccl4.org>
Tue, 4 Mar 2008 19:59:20 +0000
(19:59 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Tue, 4 Mar 2008 19:59:20 +0000
(19:59 +0000)
be U8.
p4raw-id: //depot/perl@33437
toke.c
patch
|
blob
|
blame
|
history
diff --git
a/toke.c
b/toke.c
index
72a37c4
..
431938f
100644
(file)
--- a/
toke.c
+++ b/
toke.c
@@
-11074,9
+11074,9
@@
S_scan_trans(pTHX_ char *start)
register char* s;
OP *o;
short *tbl;
-
I32
squash;
-
I32
del;
-
I32
complement;
+
U8
squash;
+
U8
del;
+
U8
complement;
#ifdef PERL_MAD
char *modstart;
#endif