about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-07-05 10:54:51 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-07-05 10:54:51 +0000
commit8ef812d6fb11afdea64771cbb076ebb82b0c0153 (patch)
tree29aba87d700b0210e6820f12b18e118382441770
parent51ca432da6a53554fc4529170a6f8fe8ea9876f8 (diff)
downloadzsh-8ef812d6fb11afdea64771cbb076ebb82b0c0153.tar.gz
zsh-8ef812d6fb11afdea64771cbb076ebb82b0c0153.tar.xz
zsh-8ef812d6fb11afdea64771cbb076ebb82b0c0153.zip
get return status right (12171)
-rw-r--r--ChangeLog4
-rwxr-xr-xCompletion/User/_arp3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c55dddb38..996138643 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-05  Sven Wischnowsky  <wischnow@zsh.org>
+
+	* 12171: Completion/User/_arp: get return status right
+	
 2000-07-05  Bart Schaefer  <schaefer@zsh.org>
 
 	* 12167: Test/Makefile.in: Ignore failure exit from "for" loop
diff --git a/Completion/User/_arp b/Completion/User/_arp
index b550bba63..9de19f67a 100755
--- a/Completion/User/_arp
+++ b/Completion/User/_arp
@@ -9,7 +9,6 @@ _arguments -C \
  '(-a -d -s 1)-f[read multiple entries from file]:file:_files' \
  '(-a)1:host:->hostintable' && return 0
 
-if [[ "$state" = hostintable ]]; then
+[[ "$state" = hostintable ]] &&
   _wanted hosts expl 'host' compadd ${${${(f)"$(${words[1]} -a)"}##[ ?(]#}%%[ )]*}
-fi