X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=blobdiff_plain;f=usr_bin%2Fiso-term;h=440233b81f4a3cfb0ba43808f40ab8ceb73b96ec;hp=9a819766a7082a7888d34c563bdecc92ea2c0584;hb=6f0b926f0885ead82fa4e43856f85825c245241e;hpb=5806b2899a4288ced4678a122eeb70e7b8d36c89 diff --git a/usr_bin/iso-term b/usr_bin/iso-term index 9a81976..440233b 100755 --- a/usr_bin/iso-term +++ b/usr_bin/iso-term @@ -4,7 +4,6 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Sam Mär 17 19:56:13 CET 2007 [mika] ################################################################################ isutfenv() { @@ -16,12 +15,10 @@ esac } if isutfenv ; then - for ENV in `env | grep UTF` ; do - eval export "$(echo $ENV | sed 's/UTF-8/iso885915/')" + for ENV in $(env | grep UTF) ; do + eval export "$(echo "$ENV" | sed 's/UTF-8/iso885915/')" done - x-terminal-emulator -else - x-terminal-emulator fi +ZSH_NO_DEFAULT_LOCALE=1 x-terminal-emulator "$@" ## END OF FILE #################################################################