Function: erc-cmd-default
erc-cmd-default is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-default LINE)
Documentation
Fallback command.
Commands for which no erc-cmd-xxx exists, are tunneled through this function. LINE is sent to the server verbatim, and therefore has to contain the command itself as well.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-default (line)
"Fallback command.
Commands for which no erc-cmd-xxx exists, are tunneled through
this function. LINE is sent to the server verbatim, and
therefore has to contain the command itself as well."
(erc-log (format "cmd: DEFAULT: %s" line))
(erc-server-send (string-trim-right (substring line 1) "[\r\n]"))
t)