diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 13:04:04 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 13:04:04 +0000 |
commit | 3d7263ff67534b5d533c1d78eca8d648b72bca93 (patch) | |
tree | d7c3f8d1fbaf58d52b092ef241dc37db974c370d /Etc | |
parent | c6686513ef7eb29cbe4ed4cc27076d13b2e02ab5 (diff) | |
download | zsh-3d7263ff67534b5d533c1d78eca8d648b72bca93.tar.gz zsh-3d7263ff67534b5d533c1d78eca8d648b72bca93.tar.xz zsh-3d7263ff67534b5d533c1d78eca8d648b72bca93.zip |
after-move cleanup
Diffstat (limited to 'Etc')
-rw-r--r-- | Etc/completion-style-guide | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Etc/completion-style-guide b/Etc/completion-style-guide index 663899799..61b8b6bb4 100644 --- a/Etc/completion-style-guide +++ b/Etc/completion-style-guide @@ -401,13 +401,13 @@ Misc. remarks completely different modes), it should allow users to define functions that separately override the behavior for these different types. This can easily be achieved by using the - `_funcall' utility function, as in: + `_call_function' utility function, as in: - _funcall ret _command_$subcommand && return ret + _call_function ret _command_$subcommand && return ret This will try to call the function `_command_$subcommand' and if it exists, it will be called and the completion function exits - with its exit status. After this call to `funcall' the completion - function would contain the code for the default way to generate - the matches. + with its exit status. After this call to `call_function' the + completion function would contain the code for the default way to + generate the matches. See the `_rpm' and `_nslookup' files for examples. |