X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=usr_bin%2Fiso-term;h=440233b81f4a3cfb0ba43808f40ab8ceb73b96ec;hb=3b7f948896440f41092f14347b17ce114072c569;hp=e0ee5d775b0d14b79217463b9f179556897530fc;hpb=7c92c196a31e58cc4e62004e6c39244b4ba38f56;p=grml-scripts.git diff --git a/usr_bin/iso-term b/usr_bin/iso-term index e0ee5d7..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 #################################################################