Mailing List Archive

LC_CTYPE
(Background: I implemented the setlocale(LC_CTYPE, "") patch as per
Andy's request)

Might have funny consequences:

../perl -I ../lib ../pod/pod2man perlre.pod > /l/perl/man/man1/perlre.1
``Üå(, Üå)'' should be a [LCI]<Üå(, Üå)> ref at ../pod/pod2man line 263, <> chunk 31.

(as SMTP might eat the 8th bit I will disguise the Latin-1 chars)

../perl -I ../lib ../pod/pod2man perlre.pod > /l/perl/man/man1/perlre.1
``\xdc\xe5(, \xdc\xe5)'' should be a [LCI]<\xdc\xe5(, \xdc\xe5)> ref at ../pod/pod2man line 263, <> chunk 31.

262 {
263 warn "``$1'' should be a [LCI]<$1> ref";
264 }

This is what seems to be the line in perlre.pod:

languages, there are no backslashed symbols that aren't alphanumeric.
So anything that looks like \\, \(, \), \<, \>, \{, or \} is always
interpreted as a literal character, not a metacharacter. This makes it

I did not see any other funnities with 'make test' and 'make install'.

++jhi;