diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-08 11:22:12 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-08 11:22:12 +0000 |
commit | eb649f8332a68e044311e1ac390a40e67a4d5e90 (patch) | |
tree | cb0d23ea3f33d71f0ad0e1517d2fd7124dedcc45 /doio.c | |
parent | 0405c3f20e53ff01fe04ae140c982204c6695872 (diff) | |
download | perl-eb649f8332a68e044311e1ac390a40e67a4d5e90.tar.gz |
open(FH, $file) should strip leading and trailing whitespace.
p4raw-id: //depot/perl@12896
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -176,9 +176,13 @@ Perl_do_openn(pTHX_ GV *gv, register char *name, I32 len, int as_raw, type = savepvn(name, len); tend = type+len; SAVEFREEPV(type); - /* Loose trailing white space */ - while (tend > type && isSPACE(tend[-1])) - *tend-- = '\0'; + + /* Lose leading and trailing white space */ + /*SUPPRESS 530*/ + for (; isSPACE(*type); type++) ; + while (tend > type && isSPACE(tend[-1])) + *--tend = '\0'; + if (num_svs) { /* New style explict name, type is just mode and discipline/layer info */ STRLEN l = 0; @@ -186,8 +190,6 @@ Perl_do_openn(pTHX_ GV *gv, register char *name, I32 len, int as_raw, len = (I32)l; name = savepvn(name, len); SAVEFREEPV(name); - /*SUPPRESS 530*/ - for (; isSPACE(*type); type++) ; } else { name = type; |