Function: doctor-concat
doctor-concat is a byte-compiled function defined in doctor.el.gz.
Signature
(doctor-concat X Y)
Documentation
Like append, but force atomic arguments to be lists.
Source Code
;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-concat (x y)
"Like append, but force atomic arguments to be lists."
(append
(if (and x (atom x)) (list x) x)
(if (and y (atom y)) (list y) y)))