blob: 540f8ae830af82ac07d5a1fe339fe560f04cc048 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#autoload
# Utility function to call a function if it exists.
#
# Usage: _funcall <return> <name> [ <args> ... ]
#
# If a function named <name> is defined (or defined to be autoloaded),
# it is called. If <return> 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
|