Function: ps-spool-buffer
ps-spool-buffer is an autoloaded, interactive and byte-compiled
function defined in ps-print.el.gz.
Signature
(ps-spool-buffer)
Documentation
Generate and spool a PostScript image of the buffer.
Like ps-print-buffer except that the PostScript image is saved in a local
buffer to be sent to the printer later.
Use the command ps-despool to send the spooled images to the printer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-spool-buffer ()
"Generate and spool a PostScript image of the buffer.
Like `ps-print-buffer' except that the PostScript image is saved in a local
buffer to be sent to the printer later.
Use the command `ps-despool' to send the spooled images to the printer."
(interactive)
(ps-spool-without-faces (point-min) (point-max)))