Variable: erc-clientinfo-alist

erc-clientinfo-alist is a variable defined in erc.el.gz.

Value

(("ACTION" . "is used to inform about one's current activity")
 ("CLIENTINFO" . "gives help on CTCP commands supported by client")
 ("ECHO" . "echoes its arguments back")
 ("FINGER" . "shows user's name, location, and idle time")
 ("PING" . "measures delay between peers")
 ("TIME" . "shows client-side time")
 ("USERINFO" . "shows information provided by a user")
 ("VERSION" . "shows client type and version"))

Documentation

Alist of CTCP CLIENTINFO for ERC commands.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; info

(defconst erc-clientinfo-alist
  '(("ACTION" . "is used to inform about one's current activity")
    ("CLIENTINFO" . "gives help on CTCP commands supported by client")
    ("ECHO" . "echoes its arguments back")
    ("FINGER" . "shows user's name, location, and idle time")
    ("PING" . "measures delay between peers")
    ("TIME" . "shows client-side time")
    ("USERINFO" . "shows information provided by a user")
    ("VERSION" . "shows client type and version"))
  "Alist of CTCP CLIENTINFO for ERC commands.")