Function: erc-list

erc-list is a byte-compiled function defined in erc.el.gz.

Signature

(erc-list THING)

Documentation

Return THING if THING is a list, or a list with THING as its element.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-list (thing)
  "Return THING if THING is a list, or a list with THING as its element."
  (if (listp thing)
      thing
    (list thing)))