[interchange] More UTF-8 spelling normalizations
David Christensen <[email protected]> Wed, 05 Oct 2016 19:38:44 +0000
| Newsgroups | gmane.comp.web.interchange.cvs |
|---|---|
| Message-ID | <[email protected]> |
commit d247025d5219cdd8d006a394888fc6e8d31734ef Author: David Christensen <[email protected]> Date: Wed Oct 5 14:37:56 2016 -0500 More UTF-8 spelling normalizations lib/Vend/Safe.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- diff --git a/lib/Vend/Safe.pm b/lib/Vend/Safe.pm index cc2e6a2..2a79c34 100644 --- a/lib/Vend/Safe.pm +++ b/lib/Vend/Safe.pm @@ -18,7 +18,7 @@ # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, # MA 02110-1301 USA. -# wrapper around Safe to return pre-inited Safe compartments which are utf-8 friendly. +# wrapper around Safe to return pre-inited Safe compartments which are UTF-8 friendly. package Vend::Safe; use strict; @@ -68,7 +68,7 @@ sub initialize_safe_compartment { # add custom shared variables for unicode support $compartment->share_from('main', ['&utf8::SWASHNEW', '&utf8::SWASHGET']); - # preload utf-8 stuff in compartment + # preload UTF-8 stuff in compartment $compartment->reval('qr{\x{0100}}i'); $@ and ::logError("Failed activating implicit UTF-8 in Safe container: %s", $@);