From: Michael Prokop Date: Sat, 17 Feb 2007 11:19:44 +0000 (+0100) Subject: /etc/zsh/zshrc: check for upper letters in isutfenv as well X-Git-Tag: 0.2.21 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=refs%2Ftags%2F0.2.21;p=grml-etc-core.git /etc/zsh/zshrc: check for upper letters in isutfenv as well --- diff --git a/debian/changelog b/debian/changelog index 880c136..b4b76db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +grml-etc-core (0.2.21) unstable; urgency=low + + * /etc/zsh/zshrc: check for upper letters in isutfenv as well + + -- Michael Prokop Sat, 17 Feb 2007 12:15:15 +0100 + grml-etc-core (0.2.20) unstable; urgency=low * Update of /etc/skel/.vimrc and /etc/vim/vimrc, added diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index c703c83..843b0f8 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -58,6 +58,7 @@ isutfenv() { case "$LANG $CHARSET $LANGUAGE" in *utf*) return 0 ;; + *UTF*) return 0 ;; *) return 1 ;; esac }