/etc/zsh/zshrc: check for upper letters in isutfenv as well 0.2.21
authorMichael Prokop <mika@grml.org>
Sat, 17 Feb 2007 11:19:44 +0000 (12:19 +0100)
committerMichael Prokop <mika@grml.org>
Sat, 17 Feb 2007 11:19:44 +0000 (12:19 +0100)
debian/changelog
etc/zsh/zshrc

index 880c136..b4b76db 100644 (file)
@@ -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 <mika@grml.org>  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
index c703c83..843b0f8 100644 (file)
@@ -58,6 +58,7 @@
   isutfenv() {
     case "$LANG $CHARSET $LANGUAGE" in
       *utf*) return 0 ;;
+      *UTF*) return 0 ;;
       *)     return 1 ;;
     esac
   }