diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-29 20:51:00 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-31 11:11:58 -0700 |
commit | 0eb30aebe20a48d634d4e484bc9e6005dffc1420 (patch) | |
tree | 589cc8865a3cb7728dc334a20bd41448dd563b88 /doio.c | |
parent | 8a2bca12c113fc829e4af2bb42350a733a5ed773 (diff) | |
download | perl-0eb30aebe20a48d634d4e484bc9e6005dffc1420.tar.gz |
Change core calls of isALNUM() to isWORDCHAR()
The latter is more clearly named to indicate it includes the underscore.
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1499,7 +1499,7 @@ Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report) goto doshell; s = cmd; - while (isALNUM(*s)) + while (isWORDCHAR(*s)) s++; /* catch VAR=val gizmo */ if (*s == '=') goto doshell; |