Function: profiler-ensure-string
profiler-ensure-string is a byte-compiled function defined in
profiler.el.gz.
Signature
(profiler-ensure-string OBJECT)
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;;; Utilities
(defun profiler-ensure-string (object)
(cond ((stringp object)
object)
((symbolp object)
(symbol-name object))
((numberp object)
(number-to-string object))
(t
(format "%s" object))))