diff options
author | Roy Marples <roy@marples.name> | 2007-04-23 20:20:40 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-04-23 20:20:40 +0000 |
commit | c965f74f46b266987ed635e65fafc9562a7ccff5 (patch) | |
tree | 76e3bf01b565f3b662f9806570d3712a75435364 /init.d.Linux | |
parent | c5ada996eef237db468a2dac28289c1f856d29ca (diff) |
Harden unicode settings
Diffstat (limited to 'init.d.Linux')
-rwxr-xr-x | init.d.Linux/keymaps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d.Linux/keymaps b/init.d.Linux/keymaps index 2118ffc9..eab90552 100755 --- a/init.d.Linux/keymaps +++ b/init.d.Linux/keymaps @@ -58,10 +58,10 @@ start() { [ -n "${DUMPKEYS_CHARSET}" ] && dumpkey_opts="-c ${DUMPKEYS_CHARSET}" dumpkeys ${dumpkey_opts} | loadkeys --unicode - termencoding="\033%%G" + termencoding='\033%%G' termmsg="UTF-8" else - termencoding="\033(K" + termencoding='\033(K' termmsg="ASCII" fi local n=1 ttydev= |