Function: mh-ps-print-toggle-faces
mh-ps-print-toggle-faces is an autoloaded, interactive and
byte-compiled function defined in mh-print.el.gz.
Signature
(mh-ps-print-toggle-faces)
Documentation
Toggle whether printing is done with faces or not.
When faces are enabled, the printed message will look very similar to the message in the MH-Show buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-print.el.gz
;;;###mh-autoload
(defun mh-ps-print-toggle-faces ()
"Toggle whether printing is done with faces or not.
When faces are enabled, the printed message will look very
similar to the message in the MH-Show buffer."
(interactive)
(if (eq mh-ps-print-func 'ps-spool-buffer-with-faces)
(progn
(setq mh-ps-print-func 'ps-spool-buffer)
(message "Printing without faces"))
(setq mh-ps-print-func 'ps-spool-buffer-with-faces)
(message "Printing with faces")))