From f256c16efe7c7d078e95f57a9546aeefadf4607f Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Thu, 21 Jun 2001 09:24:39 +0000 Subject: Fix exit status of compdef. --- Completion/compinit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Completion/compinit') diff --git a/Completion/compinit b/Completion/compinit index 4b85be764..bd879b11c 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -221,7 +221,7 @@ compdef() { echo "$0: I needs arguments" return 1 fi - + while getopts "anpPkKd" opt; do case "$opt" in a) autol=yes;; @@ -251,7 +251,7 @@ compdef() { echo "$0: I needs arguments" return 1 fi - + if [[ -z "$delete" ]]; then # If the first word contains an equal sign, all words must contain one # and we define which services to use for the commands. @@ -360,7 +360,7 @@ compdef() { fi if [[ -z "$new" || "${+_comps[$i]}" -eq 0 ]]; then _comps[$cmd]="$func" - [[ -n "$svc" ]] && _services[$cmd]="${i#*\=}" + if [[ -n "$svc" ]]; then _services[$cmd]="${i#*\=}"; fi fi done ;; -- cgit 1.4.1