Function: erc-tab
erc-tab is an interactive and byte-compiled function defined in
erc.el.gz.
Signature
(erc-tab ARG)
Documentation
Call completion-at-point when typing in the input area.
Otherwise call members of erc--tab-functions with a numeric
prefix ARG until one of them returns non-nil.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-tab (arg)
"Call `completion-at-point' when typing in the input area.
Otherwise call members of `erc--tab-functions' with a numeric
prefix ARG until one of them returns non-nil."
(interactive "p")
(if (>= (point) erc-input-marker)
(completion-at-point)
(run-hook-with-args-until-success 'erc--tab-functions arg)))