diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-03-11 08:02:40 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-03-11 08:02:40 +0000 |
commit | ad8898e054b3515a5ebb3b70399c75a63f5814d3 (patch) | |
tree | a8a65a44fa9e39ba057e5cf816d4443dbc504b1a /gv.c | |
parent | b3f566908e4a630ea804eec0dac937c2bc5ed97f (diff) | |
download | perl-ad8898e054b3515a5ebb3b70399c75a63f5814d3.tar.gz |
Add $^E and $^O to special vars, and change run to runops
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -606,8 +606,10 @@ I32 sv_type; case '|': case '\001': case '\004': + case '\005': case '\006': case '\010': + case '\017': case '\t': case '\020': case '\024': @@ -1144,7 +1146,7 @@ int flags; PUTBACK; if (op = pp_entersub()) - run(); + runops(); LEAVE; SPAGAIN; |