diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-18 18:44:59 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-18 18:44:59 +0000 |
commit | 290ff4a6149015b80a195b1c1b2a80fe3293c1e2 (patch) | |
tree | fefee72b9fad350db4817ad80d5d4b7079f691f1 | |
parent | 1cedfae08e9f5570b98d6ddae6bc634a41cd392a (diff) | |
download | perl-290ff4a6149015b80a195b1c1b2a80fe3293c1e2.tar.gz |
OP_RCATLINE is an SVOP, not a BASEOP.
p4raw-id: //depot/perl@12072
-rw-r--r-- | opcode.h | 2 | ||||
-rwxr-xr-x | opcode.pl | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1488,7 +1488,7 @@ EXT U32 PL_opargs[] = { 0x00001608, /* backtick */ 0x00012808, /* glob */ 0x0001d608, /* readline */ - 0x00001608, /* rcatline */ + 0x00000c08, /* rcatline */ 0x00002204, /* regcmaybe */ 0x00002204, /* regcreset */ 0x00002604, /* regcomp */ @@ -451,7 +451,7 @@ backtick quoted execution (``, qx) ck_open t% # glob defaults its first arg to $_ glob glob ck_glob t@ S? readline <HANDLE> ck_null t% F? -rcatline append I/O operator ck_null t% +rcatline append I/O operator ck_null t$ # Bindable operators. |