Function: erc-command-no-process-p
erc-command-no-process-p is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-command-no-process-p STR)
Documentation
Return non-nil if STR is an ERC command that can be run when the process is not alive, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-command-no-process-p (str)
"Return non-nil if STR is an ERC command that can be run when the process
is not alive, nil otherwise."
(let ((fun (erc-extract-command-from-line str)))
(and fun
(symbolp (car fun))
(get (car fun) 'process-not-needed))))