diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-05 17:51:50 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-06 05:56:04 -0800 |
commit | 9ce1fb7d2323e20e2cf2480171cbfb4f2b1153ea (patch) | |
tree | d4ba95e015ef45a6fdc4d598af274bdee2eb21b3 /opcode.h | |
parent | 48c2c411a1dfc4a3e5e0e6829b02441a37bb3081 (diff) | |
download | perl-9ce1fb7d2323e20e2cf2480171cbfb4f2b1153ea.tar.gz |
Split ck_open into two functions
It is used for two op types, but only a small portion of it applies
to both, so we can put that in a static function. This makes the
next commit easier.
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1357,7 +1357,7 @@ EXT Perl_check_t PL_check[] /* or perlvars.h */ Perl_ck_null, /* srefgen */ Perl_ck_fun, /* ref */ Perl_ck_fun, /* bless */ - Perl_ck_open, /* backtick */ + Perl_ck_backtick, /* backtick */ Perl_ck_glob, /* glob */ Perl_ck_readline, /* readline */ Perl_ck_null, /* rcatline */ |