more op description tweaks
Gurusamy Sarathy [Sat, 18 Sep 1999 15:11:47 +0000 (15:11 +0000)]
p4raw-id: //depot/perl@4192

opcode.h
opcode.pl

index b4d6537..ae4011f 100644 (file)
--- a/opcode.h
+++ b/opcode.h
@@ -397,7 +397,7 @@ EXT char *PL_op_desc[] = {
        "single ref constructor",
        "reference-type operator",
        "bless",
-       "backticks (``, qx)",
+       "quoted execution (``, qx)",
        "glob",
        "<HANDLE>",
        "append I/O operator",
@@ -683,9 +683,9 @@ EXT char *PL_op_desc[] = {
        "semctl",
        "semop",
        "require",
-       "do 'file'",
-       "eval 'string'",
-       "eval 'string' exit",
+       "do \"file\"",
+       "eval \"string\"",
+       "eval \"string\" exit",
        "eval {block}",
        "eval {block} exit",
        "gethostbyname",
index 9e96cd1..3f4d7c5 100755 (executable)
--- a/opcode.pl
+++ b/opcode.pl
@@ -357,7 +357,7 @@ bless               bless                   ck_fun          s@      S S?
 
 # Pushy I/O.
 
-backtick       backticks (``, qx)      ck_null         t%      
+backtick       quoted execution (``, qx)       ck_null         t%      
 # glob defaults its first arg to $_
 glob           glob                    ck_glob         t@      S? S?
 readline       <HANDLE>                ck_null         t%      
@@ -747,9 +747,9 @@ semop               semop                   ck_fun          imst@   S S
 # Eval.
 
 require                require                 ck_require      du%     S?
-dofile         do 'file'               ck_fun          d1      S
-entereval      eval 'string'           ck_eval         d%      S
-leaveeval      eval 'string' exit      ck_null         1       S
+dofile         do "file"               ck_fun          d1      S
+entereval      eval "string"           ck_eval         d%      S
+leaveeval      eval "string" exit      ck_null         1       S
 #evalonce      eval constant string    ck_null         d1      S
 entertry       eval {block}            ck_null         |       
 leavetry       eval {block} exit       ck_null         @