Function: erc-ctcp-reply-FINGER

erc-ctcp-reply-FINGER is a byte-compiled function defined in erc.el.gz.

Signature

(erc-ctcp-reply-FINGER PROC NICK LOGIN HOST TO MSG)

Documentation

Handle a CTCP FINGER reply.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-ctcp-reply-FINGER (_proc nick _login _host _to msg)
  "Handle a CTCP FINGER reply."
  (when (string-match "^FINGER\\s-+\\(.*\\)\\s-*$" msg)
    (let ((message (match-string 1 msg)))
      (erc-display-message
       nil 'notice 'active
       'CTCP-FINGER ?n nick ?m message)))
  nil)