about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-09-26 21:47:14 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-09-26 21:47:14 +0000
commit4a8835ad38abcc771f6fb6137d79b0521d1a2ef1 (patch)
tree351ac4371065a82ff94b4f3d0c64ce78b0825127
parent35e83bae86fc346c626c0c5effb427ade7b2385a (diff)
downloadzsh-4a8835ad38abcc771f6fb6137d79b0521d1a2ef1.tar.gz
zsh-4a8835ad38abcc771f6fb6137d79b0521d1a2ef1.tar.xz
zsh-4a8835ad38abcc771f6fb6137d79b0521d1a2ef1.zip
zsh-workers/8051
-rw-r--r--Completion/User/_users_on4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/User/_users_on b/Completion/User/_users_on
index 920688089..7a1ecd864 100644
--- a/Completion/User/_users_on
+++ b/Completion/User/_users_on
@@ -1,9 +1,9 @@
-#autoload write
+#compdef write
 
 local expl
 
 if which users >/dev/null; then
-  _description expl users logged on
+  _description expl 'users logged on'
   compadd "$@" "$expl[@]" - $(users) && return 0
 else
   # Other methods of finding out users logged on should be added here