Function: erc-cmd-QUOTE

erc-cmd-QUOTE is a byte-compiled function defined in erc.el.gz.

Signature

(erc-cmd-QUOTE LINE)

Documentation

Send LINE directly to the server.

All the text given as argument is sent to the sever as unmodified, just as you provided it. Use this command with care!

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-QUOTE (line)
  "Send LINE directly to the server.
All the text given as argument is sent to the sever as unmodified,
just as you provided it.  Use this command with care!"
  (cond
   ((string-match "^ ?\\(.+\\)$" line)
    (erc-server-send (match-string 1 line)))
   (t nil)))