about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2005-08-10 12:08:56 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2005-08-10 12:08:56 +0000
commit4fe6b1a1fc223a168fc3058bcd91324610274d7f (patch)
treefa1d69569b42fb318da1fceb46062a9c07fa0876 /Completion
parent0c301a8af6a50e893c5679898d7753590f623788 (diff)
downloadzsh-4fe6b1a1fc223a168fc3058bcd91324610274d7f.tar.gz
zsh-4fe6b1a1fc223a168fc3058bcd91324610274d7f.tar.xz
zsh-4fe6b1a1fc223a168fc3058bcd91324610274d7f.zip
21571: avoid localised translations that break parsing
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Debian/Command/_aptitude2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Debian/Command/_aptitude b/Completion/Debian/Command/_aptitude
index 6ca8f18cd..2bf28cb72 100644
--- a/Completion/Debian/Command/_aptitude
+++ b/Completion/Debian/Command/_aptitude
@@ -26,7 +26,7 @@ _arguments -C \
 
 case $state in
   cmds)
-    cmds=( ${${(M)${(f)"$(aptitude -h 2>/dev/null)"}:#* - *}/(#b) (*[^ ]) #- (*)/$match[1]:$match[2]:l})
+    cmds=( ${${(M)${(f)"$(LC_ALL=C _call_program commands aptitude -h 2>/dev/null)"}:#* - *}/(#b) (*[^ ]) #- (*)/$match[1]:$match[2]:l})
 
     _describe -t commands 'aptitude command' cmds && ret=0
   ;;