Function: ps-spool-region

ps-spool-region is an autoloaded, interactive and byte-compiled function defined in ps-print.el.gz.

Signature

(ps-spool-region FROM TO)

Documentation

Generate a PostScript image of the region and spool locally.

Like ps-spool-buffer(var)/ps-spool-buffer(fun), but spools just the current region.

Use the command ps-despool to send the spooled images to the printer.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-spool-region (from to)
  "Generate a PostScript image of the region and spool locally.
Like `ps-spool-buffer', but spools just the current region.

Use the command `ps-despool' to send the spooled images to the printer."
  (interactive "r")
  (ps-spool-without-faces from to t))