Function: lpr-region

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

Signature

(lpr-region START END)

Documentation

Print region contents without pagination or page headers.

See the variables lpr-switches and lpr-command for customization of the printer command.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/lpr.el.gz
;;;###autoload
(defun lpr-region (start end)
  "Print region contents without pagination or page headers.
See the variables `lpr-switches' and `lpr-command'
for customization of the printer command."
  (interactive
   (if (y-or-n-p "Send selected text to default printer? ")
       (list (region-beginning) (region-end))
     (error "Canceled")))
  (print-region-1 start end lpr-switches nil))