Function: pr-set-n-up-and-filename

pr-set-n-up-and-filename is a byte-compiled function defined in printing.el.gz.

Signature

(pr-set-n-up-and-filename N-UP-SYM FILENAME-SYM MESS)

Source Code

;; Defined in /usr/src/emacs/lisp/printing.el.gz
(defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
  ;; n-up
  (or (symbol-value n-up-sym)
      (set n-up-sym (pr-interactive-n-up mess)))
  ;; output file
  (pr-set-outfilename filename-sym))