Function: custom-print-install

custom-print-install is an interactive and byte-compiled function defined in cust-print.el.gz.

Signature

(custom-print-install)

Documentation

Replace print functions with general, customizable, Lisp versions.

The Emacs subroutines are saved away, and you can reinstall them by running custom-print-uninstall.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/cust-print.el.gz
(defun custom-print-install ()
  "Replace print functions with general, customizable, Lisp versions.
The Emacs subroutines are saved away, and you can reinstall them
by running `custom-print-uninstall'."
  (interactive)
  (mapc #'cust-print-set-function-cell
	'((prin1 custom-prin1)
	  (princ custom-princ)
	  (print custom-print)
	  (prin1-to-string custom-prin1-to-string)
	  (format custom-format)
	  (message custom-message)
	  (error custom-error)
	  ))
  t)