Function: pr-interface
pr-interface is an autoloaded, interactive and byte-compiled function
defined in printing.el.gz.
Signature
(pr-interface &optional BUFFER)
Documentation
Activate the printing interface buffer.
If BUFFER is nil, the current buffer is used for printing.
For more information, type M-x pr-interface-help (pr-interface-help).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/printing.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Commands
;;;###autoload
(defun pr-interface (&optional buffer)
"Activate the printing interface buffer.
If BUFFER is nil, the current buffer is used for printing.
For more information, type \\[pr-interface-help]."
(interactive)
(with-current-buffer (or buffer (current-buffer))
(pr-create-interface)))