about summary refs log tree commit diff
path: root/Completion/Unix/Command/_gs
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/_gs
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/_gs')
-rw-r--r--Completion/Unix/Command/_gs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_gs b/Completion/Unix/Command/_gs
index 530edbe91..345be0208 100644
--- a/Completion/Unix/Command/_gs
+++ b/Completion/Unix/Command/_gs
@@ -4,7 +4,7 @@ if compset -N --; then
   if [[ CURRENT -eq 1 ]]; then
     _pspdf
   else
-    _message 'userdict ARGUMENTS'
+    _message -e arguments 'userdict ARGUMENTS'
     return 1
   fi
 else
@@ -23,7 +23,7 @@ else
   case "$state" in
   dname)
     if [[ "$PREFIX" = *\=* ]]; then
-      _message 'systemdict definition value'
+      _message -e definition-values 'systemdict definition value'
     else
       _wanted names expl 'systemdict definition name' \
           compadd -M 'm:{a-z}={A-Z}' - \
@@ -43,7 +43,7 @@ else
         _files "$expl[@]" && ret=0
         ;;
       *)
-        _message 'systemdict value'
+        _message -e values 'systemdict value'
         return 1
       esac
     else