Variable: ps-error-handler-message

ps-error-handler-message is a customizable variable defined in ps-print.el.gz.

Value

paper

Documentation

Specify where the error handler message should be sent.

Valid values are:

   none catch the error and *DON'T* send any message.

   paper catch the error and print on paper the error message.

   system catch the error and send back the error message to
printing system. This is useful only if printing system
send back an email reporting the error, or if there is
some other alternative way to report back the error from
the system to you.

   paper-and-system catch the error, print on paper the error message and
send back the error message to printing system.

Any other value is treated as paper.

This variable was added, or its default value changed, in Emacs 20.

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-error-handler-message 'paper
  "Specify where the error handler message should be sent.

Valid values are:

   `none'		catch the error and *DON'T* send any message.

   `paper'		catch the error and print on paper the error message.

   `system'		catch the error and send back the error message to
			printing system.  This is useful only if printing system
			send back an email reporting the error, or if there is
			some other alternative way to report back the error from
			the system to you.

   `paper-and-system'	catch the error, print on paper the error message and
			send back the error message to printing system.

Any other value is treated as `paper'."
  :type '(choice :menu-tag "Error Handler Message"
		 :tag "Error Handler Message"
		 (const none)   (const paper)
		 (const system) (const paper-and-system))
  :version "20"
  :group 'ps-print-miscellany)