Function: doctor-make-string
doctor-make-string is a byte-compiled function defined in
doctor.el.gz.
Signature
(doctor-make-string OBJ)
Source Code
;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-make-string (obj)
(cond ((stringp obj) obj)
((symbolp obj) (symbol-name obj))
((numberp obj) (int-to-string obj))
(t "")))