From 9e1b9444345b9a48e4172d7e01b48c62bd253dfa Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:13:30 +0000 Subject: moved from Completion/Core/_funcall --- Completion/Base/Utility/_call_function | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Completion/Base/Utility/_call_function (limited to 'Completion/Base/Utility/_call_function') diff --git a/Completion/Base/Utility/_call_function b/Completion/Base/Utility/_call_function new file mode 100644 index 000000000..342f3509e --- /dev/null +++ b/Completion/Base/Utility/_call_function @@ -0,0 +1,32 @@ +#autoload + +# Utility function to call a function if it exists. +# +# Usage: _call_function [ ... ] +# +# If a function named is defined (or defined to be autoloaded), +# it is called. If is given not the string `-' or empty, it is +# taken as the name of a parameter and the return status of the function +# called is stored in this parameter. All other arguments are given +# to the function called. +# The return value of this function is zero if the function was +# called and non-zero otherwise. + +local _name _ret + +[[ "$1" != (|-) ]] && _name="$1" + +shift + +if (( $+functions[$1] )); then + "$@" + _ret="$?" + + [[ -n "$_name" ]] && eval "${_name}=${_ret}" + + compstate[restore]='' + + return 0 +fi + +return 1 -- cgit 1.4.1