From: Gurusamy Sarathy Date: Fri, 19 Feb 1999 23:29:59 +0000 (+0000) Subject: mention C and C in perldelta X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9d73390d35adf2aaf562a1ed8f23c64fb59c31a7;p=p5sagit%2Fp5-mst-13.2.git mention C and C in perldelta p4raw-id: //depot/perl@2987 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index f597877..258473a 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -82,6 +82,17 @@ maintenance versions. =head1 Core Changes +=head2 Unicode and UTF-8 support + +Perl can optionally use UTF-8 as its internal representation for character +strings. The C pragma enables this support in the current lexical +scope. See L for more information. + +=head2 Lexically scoped warning categories + +You can now control the granularity of warnings emitted by perl at a finer +level using the C pragma. See L for details. + =head2 Binary numbers supported Binary numbers are now supported as literals, in s?printf formats, and @@ -264,9 +275,11 @@ consistently croak() if the date falls in an unsupported range. =head2 Pragmata -Lexical warnings pragma, "use warning;", to control optional warnings. +C, to enable UTF-8 and Unicode support. + +Lexical warnings pragma, C, to control optional warnings. -Filetest pragma, to control the behaviour of filetests (C<-r> C<-w> ...). +C, to control the behaviour of filetests (C<-r> C<-w> ...). Currently only one subpragma implemented, "use filetest 'access';", that enables the use of access(2) or equivalent to check the permissions instead of using stat(2) as usual. This matters