about summary refs log tree commit diff
path: root/Completion/Unix/Command/_pbm
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2002-04-16 07:48:43 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2002-04-16 07:48:43 +0000
commit61f8a07bfc2348b14a7dc194968fcf62f723f36f (patch)
tree9c8b7a2d6f832b6d84dcb5963bc6715efb0c4291 /Completion/Unix/Command/_pbm
parentd8fc48f7daa6758ec6a239789b6922af614e1fac (diff)
downloadzsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.tar.gz
zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.tar.xz
zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.zip
make more calls to _message use the -e option (16988)
Diffstat (limited to 'Completion/Unix/Command/_pbm')
-rw-r--r--Completion/Unix/Command/_pbm10
1 files changed, 5 insertions, 5 deletions
diff --git a/Completion/Unix/Command/_pbm b/Completion/Unix/Command/_pbm
index 388249f9d..c33e09140 100644
--- a/Completion/Unix/Command/_pbm
+++ b/Completion/Unix/Command/_pbm
@@ -69,7 +69,7 @@ macptopbm)
 
 pbmclean)
   if [[ "$PREFIX" = -* ]]; then
-    _message 'maximum number of identical neighbours'
+    _message -e neighbours 'maximum number of identical neighbours'
   else
     _pbm
   fi
@@ -344,12 +344,12 @@ pnmflip)
 
 pnmgamma)
   if [[ CURRENT -eq 2 ]]; then
-    _message 'gamma value or red gamma value'
+    _message -e gamma-values 'gamma value or red gamma value'
   elif [[ CURRENT -eq 3 ]]; then
     _pbm && ret=0
-    _message 'green gamma value'
+    _message -e gamma-values 'green gamma value'
   elif [[ CURRENT -eq 4 ]]; then
-    _message 'blue gamma value'
+    _message -e gamma-values 'blue gamma value'
   elif [[ CURRENT -eq 5 ]]; then
     _pbm && ret=0
   fi
@@ -592,7 +592,7 @@ ppmquant)
     else
       _wanted options expl option compadd - -map && ret=0
     fi
-    _message 'number of colors'
+    _message -e numbers 'number of colors'
   
     return ret
   elif [[ CURRENT -eq 3 && "$words[2]" = -map ]]; then