Function: make-erc-response

make-erc-response is a byte-compiled function defined in erc-backend.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-backend.el.gz
(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))