diff options
author | Brian Fraser <fraserbn@gmail.com> | 2013-02-26 17:07:59 -0300 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-06-11 15:03:47 +0200 |
commit | 345b3785326c7725d2f52bfa4a802d2428eb8a17 (patch) | |
tree | 03f82d05c39b445034425b281e370205110145da /embed.h | |
parent | 7196fc2f2d32b6d967837833bdf1bccf50f7f714 (diff) | |
download | perl-345b3785326c7725d2f52bfa4a802d2428eb8a17.tar.gz |
toke.c: Remove the allow_initial_tick hack from S_force_word.
Over the years, every caller which used this hack had it progressively
turned off. Prior to this commit, only one call remained, which
ostensibly handled this case:
format 'STDOUT = ...
However, turns out that even there it was superflous, since a scan_word
a dozen lines before will've already turned all ticks into double
colons.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1597,7 +1597,7 @@ #define force_next(a) S_force_next(aTHX_ a) #define force_strict_version(a) S_force_strict_version(aTHX_ a) #define force_version(a,b) S_force_version(aTHX_ a,b) -#define force_word(a,b,c,d,e) S_force_word(aTHX_ a,b,c,d,e) +#define force_word(a,b,c,d) S_force_word(aTHX_ a,b,c,d) #define get_and_check_backslash_N_name(a,b) S_get_and_check_backslash_N_name(aTHX_ a,b) #define incline(a) S_incline(aTHX_ a) #define intuit_method(a,b,c) S_intuit_method(aTHX_ a,b,c) |