Function: custom-princ

custom-princ is a byte-compiled function defined in cust-print.el.gz.

Signature

(custom-princ OBJECT &optional STREAM)

Documentation

Output the printed representation of OBJECT, any Lisp object.

No quoting characters are used; no delimiters are printed around the contents of strings. Output stream is STREAM, or value of standard-output (which see).

This is the custom-print replacement for the standard princ.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/cust-print.el.gz
(defun custom-princ (object &optional stream)
  "Output the printed representation of OBJECT, any Lisp object.
No quoting characters are used; no delimiters are printed around
the contents of strings.
Output stream is STREAM, or value of `standard-output' (which see).

This is the custom-print replacement for the standard `princ'."
  (cust-print-top-level object stream 'cust-print-original-princ))