diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-14 10:38:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-14 10:38:35 +0000 |
commit | 01ec43d06089361423d61a40521883bf73e1944a (patch) | |
tree | a27dd1835fe39bd062de7cf4f0a40b35ecbb7e67 /pp.c | |
parent | 631cfb58c2bd693774ee9ffe59908af4423167d4 (diff) | |
download | perl-01ec43d06089361423d61a40521883bf73e1944a.tar.gz |
enable UTF-16 filter by default if relevant BOM is seen; various
cleanups (typos, misformatted code, and small bugs)
p4raw-id: //depot/perl@6399
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4418,7 +4418,7 @@ PP(pp_pack) patcopy++; continue; } - if (datumtype == 'U' && pat==patcopy+1) + if (datumtype == 'U' && pat == patcopy+1) SvUTF8_on(cat); if (datumtype == '#') { while (pat < patend && *pat != '\n') |