about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrank Terbeck <bewater@users.sourceforge.net>2010-04-26 18:58:33 +0000
committerFrank Terbeck <bewater@users.sourceforge.net>2010-04-26 18:58:33 +0000
commit42771216622146246c94e35e4c9dbc2073e7deda (patch)
tree6ad67e206dd8f6483586913d4f19a0f0f1aa1b71
parentc613f336352c628f652c6b96c3e83cada488e0ac (diff)
downloadzsh-42771216622146246c94e35e4c9dbc2073e7deda.tar.gz
zsh-42771216622146246c94e35e4c9dbc2073e7deda.tar.xz
zsh-42771216622146246c94e35e4c9dbc2073e7deda.zip
27908: Functions/VCS_Info/vcs_info: Avoid locale related problems
-rw-r--r--ChangeLog7
-rw-r--r--Functions/VCS_Info/vcs_info8
2 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aa331dcfc..1695f429c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-26  Frank Terbeck  <ft@bewatermyfriend.org>
+
+	* 27908: Functions/VCS_Info/vcs_info: Avoid locale related
+	problems
+
 2010-04-26  Peter Stephenson  <pws@csr.com>
 
 	* unposted: Completion/Unix/Command/_perforce: update to Perforce
@@ -13068,5 +13073,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.4965 $
+* $Revision: 1.4966 $
 *****************************************************
diff --git a/Functions/VCS_Info/vcs_info b/Functions/VCS_Info/vcs_info
index a9e65e119..7ae11230e 100644
--- a/Functions/VCS_Info/vcs_info
+++ b/Functions/VCS_Info/vcs_info
@@ -47,11 +47,17 @@ vcs_info () {
     local pat
     local -i found
     local -a enabled disabled dps
-    local -x usercontext vcs rrn
+    local -x usercontext vcs rrn LC_MESSAGES
     local -ix maxexports
     local -ax msgs
     local -Ax vcs_comm
 
+    LC_MESSAGES=C
+    if [[ -n ${LC_ALL} ]]; then
+        local -x LANG
+        LANG=${LC_ALL}
+        local -x LC_ALL
+    fi
     vcs='-init-'; rrn='-all-'
     usercontext=${1:-default}