diff options
author | Karl Williamson <khw@cpan.org> | 2017-03-08 20:31:25 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-11-06 12:50:05 -0700 |
commit | c8b388b0c776dab4a28db03739aff4d64daccada (patch) | |
tree | 3bf17c3a7a4b2b7f260199423ce0baf55dc9e809 /amigaos4 | |
parent | 98d1c64ef90693f86df84c4ce96718ed136e933c (diff) | |
download | perl-c8b388b0c776dab4a28db03739aff4d64daccada.tar.gz |
Rename strEQs to strBEGINs; remove strNEs
The original names are confusing.
See thread beginning with
http://nntp.perl.org/group/perl.perl5.porters/244335
The two macros are mapped into just that one, complementing the result
for the few cases where strNEs was used.
Diffstat (limited to 'amigaos4')
-rw-r--r-- | amigaos4/amigaio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amigaos4/amigaio.c b/amigaos4/amigaio.c index b50dd9b9f5..b471220260 100644 --- a/amigaos4/amigaio.c +++ b/amigaos4/amigaio.c @@ -668,7 +668,7 @@ static I32 S_do_amigaos_exec3(pTHX_ const char *incmd, int fd, int do_report) if (*cmd == '.' && isSPACE(cmd[1])) goto doshell; - if (strEQs(cmd, "exec") && isSPACE(cmd[4])) + if (strBEGINs(cmd, "exec") && isSPACE(cmd[4])) goto doshell; s = cmd; |