Function: erc--ctcp-response-command-args

erc--ctcp-response-command-args is a byte-compiled function defined in erc-common.el.gz.

Signature

(erc--ctcp-response-command-args CL-X)

Documentation

Access slot "command-args" of erc--ctcp-response struct CL-X.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(cl-defstruct (erc--ctcp-response
               (:include erc-response)
               (:constructor
                erc--ctcp-response-from-parsed
                (&key parsed buffer statusmsg prefix dispname
                      &aux (unparsed (erc-response.unparsed parsed))
                      (sender (erc-response.sender parsed))
                      (command (erc-response.command parsed))
                      (command-args (erc-response.command-args parsed))
                      (contents (erc-response.contents parsed))
                      (tags (erc-response.tags parsed)))))
  "Data for a processed CTCP query or reply."
  (buffer nil :type (or buffer null))
  (statusmsg nil :type (or null string))
  (prefix nil :type (or erc-channel-user null))
  (dispname nil :type (or string null)))