Function: make-erc-response
make-erc-response is a byte-compiled function defined in
erc-common.el.gz.
Signature
(make-erc-response &key UNPARSED SENDER COMMAND COMMAND-ARGS CONTENTS TAGS)
Documentation
Constructor for objects of type erc-response.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
;; Beginning in 5.5/29.1, the `tags' field may take on one of two
;; differing types. See `erc-tags-format' for details.
(cl-defstruct (erc-response (:conc-name erc-response.))
(unparsed "" :type string)
(sender "" :type string)
(command "" :type string)
(command-args '() :type list)
(contents "" :type string)
(tags '() :type list))