Variable: pr-visible-entry-list

pr-visible-entry-list is a customizable variable defined in printing.el.gz.

Value

(postscript text postscript-options postscript-process printing help)

Documentation

Specify a list of Printing menu visible entries.

Valid values with the corresponding menu parts are:

+------------------------------+
| Printing Interface |
+------------------------------+
   postscript | PostScript Preview >|
| PostScript Print >|
| PostScript Printer: name >|
+------------------------------+
   text | Printify >|
| Print >|
| Text Printer: name >|
+------------------------------+
   postscript-options |[ ] Landscape |
|[ ] Print Header |
|[ ] Print Header Frame |
|[ ] Line Number |
|[ ] Zebra Stripes |
|[ ] Duplex |
|[ ] Tumble |
|[ ] Upside-Down |
| Print All Pages >|
+------------------------------+
   postscript-process |[ ] Spool Buffer |
|[ ] Print with faces |
|[ ] Print via Ghostscript |
+------------------------------+
   printing |[ ] Auto Region |
|[ ] Auto Mode |
|[ ] Menu Lock |
+------------------------------+
   help | Customize >|
| Show Settings >|
| Help |
+------------------------------+

Any other value is ignored.

Source Code

;; Defined in /usr/src/emacs/lisp/printing.el.gz
(defcustom pr-visible-entry-list
  '(postscript text postscript-options postscript-process printing help)
  "Specify a list of Printing menu visible entries.

Valid values with the corresponding menu parts are:

			      +------------------------------+
			      |    Printing Interface        |
			      +------------------------------+
   `postscript'		      |    PostScript Preview       >|
			      |    PostScript Print         >|
			      |    PostScript Printer: name >|
			      +------------------------------+
   `text'		      |    Printify                 >|
			      |    Print                    >|
			      |    Text Printer: name       >|
			      +------------------------------+
   `postscript-options'	      |[ ] Landscape                 |
			      |[ ] Print Header              |
			      |[ ] Print Header Frame        |
			      |[ ] Line Number               |
			      |[ ] Zebra Stripes             |
			      |[ ] Duplex                    |
			      |[ ] Tumble                    |
			      |[ ] Upside-Down               |
			      |    Print All Pages          >|
			      +------------------------------+
   `postscript-process'	      |[ ] Spool Buffer              |
			      |[ ] Print with faces          |
			      |[ ] Print via Ghostscript     |
			      +------------------------------+
   `printing'		      |[ ] Auto Region               |
			      |[ ] Auto Mode                 |
			      |[ ] Menu Lock                 |
			      +------------------------------+
   `help'		      |    Customize                >|
			      |    Show Settings            >|
			      |    Help                      |
			      +------------------------------+

Any other value is ignored."
  :type '(repeat :tag "Menu Visible Part"
		 (choice :menu-tag "Menu Part"
			 :tag "Menu Part"
			 (const postscript)
			 (const text)
			 (const postscript-options)
			 (const postscript-process)
			 (const printing)
			 (const help))))