Function: doctor-remember
doctor-remember is a byte-compiled function defined in doctor.el.gz.
Signature
(doctor-remember THING)
Source Code
;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-remember (thing)
(cond ((null doctor--history)
(setq doctor--history (list thing)))
(t (setq doctor--history (append doctor--history (list thing))))))