diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-20 00:55:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-20 00:55:54 +0000 |
commit | b310b0538cc1a7948587a9e5ff30683fec2a3ece (patch) | |
tree | f3f8fa0dd8ad9ba1aecae60fa5a8079b3fb69237 /intrpvar.h | |
parent | 563aca73f1f51dd4b10089896b544a6ae41316cb (diff) | |
download | perl-b310b0538cc1a7948587a9e5ff30683fec2a3ece.tar.gz |
If it looks like UTF-8 (either nl_langinfo or locale variables),
think UTF-8, embrace your inner UTF-8, as suggested by Larry.
(And as suggested by Markus Kuhn.)
While we are at it, document also the case of
mixed hash keys as a known potential troublemaker.
(Since it's locale-related, sometimes.)
p4raw-id: //depot/perl@15350
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 31d644945e..94125c5719 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -515,6 +515,8 @@ PERLVARI(IOpSpace,I32,0) PERLVAR(IOpSlab,I32 *) #endif +PERLVAR(Iwantutf8, bool) /* want utf8 as the default discipline */ + /* New variables must be added to the very end for binary compatibility. * XSUB.h provides wrapper functions via perlapi.h that make this * irrelevant, but not all code may be expected to #include XSUB.h. */ |