Function: erc-cmd-DESCRIBE

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

Signature

(erc-cmd-DESCRIBE LINE)

Documentation

Pose some action to a certain user.

LINE has the format "USER ACTION".

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-DESCRIBE (line)
  "Pose some action to a certain user.
LINE has the format \"USER ACTION\"."
  (cond
   ((string-match
     "^\\s-*\\(\\S-+\\)\\s-\\(.*\\)$" line)
    (let ((dst (match-string 1 line))
          (s (match-string 2 line)))
      (erc-log (format "cmd: DESCRIBE: [%s] %s" dst s))
      (erc-send-action dst s))
    t)
   (t nil)))