summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-07-14 10:38:35 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-07-14 10:38:35 +0000
commit01ec43d06089361423d61a40521883bf73e1944a (patch)
treea27dd1835fe39bd062de7cf4f0a40b35ecbb7e67 /pp.c
parent631cfb58c2bd693774ee9ffe59908af4423167d4 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 1649cf4d2c..cb55181a83 100644
--- a/pp.c
+++ b/pp.c
@@ -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')