Function: ses-prin1

ses-prin1 is a byte-compiled function defined in ses.el.gz.

Signature

(ses-prin1 VALUE)

Documentation

Shorthand for (prin1-to-string VALUE t).

Useful to handle the default behavior in custom lambda based printer functions.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-prin1 (value)
  "Shorthand for `(prin1-to-string VALUE t)'.
Useful to handle the default behavior in custom lambda based
printer functions."
  (prin1-to-string value t))