summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1998-07-18 14:30:54 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1998-07-18 14:30:54 +0000
commit8f8722428a3062985b7d543348f72ccabf60a063 (patch)
treefb3182ddd757130b628be8e0b18fdbe61b2aa7a8 /toke.c
parent3280af22f58e7b37514ed104858e2c2fc55ceeeb (diff)
downloadperl-8f8722428a3062985b7d543348f72ccabf60a063.tar.gz
Builds and passes tests with -DMULTIPLICITY and -DCRIPPLED_CC
(still with PERL_GLOBAL_STRUCT) - to cover more #if branches p4raw-id: //depot/ansiperl@1533
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index a4feb01e32..23f6ac1ad4 100644
--- a/toke.c
+++ b/toke.c
@@ -453,8 +453,8 @@ uni(I32 f, char *s)
yylval.ival = f;
PL_expect = XTERM;
PL_bufptr = s;
- last_uni = oldbufptr;
- last_lop_op = f;
+ PL_last_uni = PL_oldbufptr;
+ PL_last_lop_op = f;
if (*s == '(')
return FUNC1;
s = skipspace(s);