diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-10 18:16:43 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-10 18:16:43 +0000 |
commit | d0b025468aed28f44caeb5f9e0b1d5571b043cba (patch) | |
tree | 107c3d0eeffb996182f91e5e0bfa102a3fd3008a /IkiWiki | |
parent | 961ac9575a684c09b2c3423a4e21f9a2c377d64a (diff) |
* Patch from Recai to use utf8 when reading the setup file, so that
utf8 wikinames from there will be used properly.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Setup.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Setup.pm b/IkiWiki/Setup.pm index 9f210dec8..2b4c76bd0 100644 --- a/IkiWiki/Setup.pm +++ b/IkiWiki/Setup.pm @@ -3,6 +3,7 @@ use warnings; use strict; use IkiWiki; +use open qw{:utf8 :std}; package IkiWiki; |