diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-18 20:19:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-18 20:19:25 +0000 |
commit | 8f8cf39ca802a67cf132f9179bbf212ddb1ec64e (patch) | |
tree | 3a2a1750ff051e18f93335faab7c32354102ca77 /pod/perluniintro.pod | |
parent | ca585e4dbaf85f4268cfbda9a6899be6dec77130 (diff) | |
download | perl-8f8cf39ca802a67cf132f9179bbf212ddb1ec64e.tar.gz |
Document the "Unicode in package/sub names" problem;
a microfix in toke.c towards the final goal (the fix
removes the need to have quotes around Unicode package
names when calling a method on them)
p4raw-id: //depot/perl@17286
Diffstat (limited to 'pod/perluniintro.pod')
-rw-r--r-- | pod/perluniintro.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod index 1468ae3282..cc11dde928 100644 --- a/pod/perluniintro.pod +++ b/pod/perluniintro.pod @@ -132,7 +132,7 @@ operations. Only one case remains where an explicit C<use utf8> is needed: if your Perl script itself is encoded in UTF-8, you can use UTF-8 in your identifier names, and in string and regular expression literals, by saying C<use utf8>. This is not the default because -scripts with legacy 8-bit data in them would break. +scripts with legacy 8-bit data in them would break. See L<utf8>. =head2 Perl's Unicode Model |