diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-07-05 11:55:18 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-07-05 11:55:18 +0000 |
commit | c03294656c9980c235cc5951a63088fd96d33704 (patch) | |
tree | 6e8191a8d83c36b157d11c7868c3d9c0e8ddcc8d /toke.c | |
parent | 462e5cf694f345fbf34a1f95e9a82957e59dcc2b (diff) | |
download | perl-c03294656c9980c235cc5951a63088fd96d33704.tar.gz |
Introduce pp_lock.
p4raw-id: //depot/perl@35
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3098,6 +3098,9 @@ yylex() case KEY_listen: LOP(OP_LISTEN,XTERM); + case KEY_lock: + UNI(OP_LOCK); + case KEY_lstat: UNI(OP_LSTAT); @@ -3966,6 +3969,7 @@ I32 len; case 4: if (strEQ(d,"last")) return KEY_last; if (strEQ(d,"link")) return -KEY_link; + if (strEQ(d,"lock")) return -KEY_lock; break; case 5: if (strEQ(d,"local")) return KEY_local; |