diff options
Diffstat (limited to 'lisp/dos-w32.el')
-rw-r--r-- | lisp/dos-w32.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/dos-w32.el b/lisp/dos-w32.el index 3a992575f4e..7dae8d783da 100644 --- a/lisp/dos-w32.el +++ b/lisp/dos-w32.el @@ -370,6 +370,8 @@ filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"." (defvar printer-name) +(declare-function default-printer-name "w32fns.c") + (defun direct-print-region-function (start end &optional lpr-prog delete-text buf display @@ -404,6 +406,8 @@ indicates a specific program should be invoked." (direct-print-region-helper printer start end lpr-prog delete-text buf display rest))) +(defvar print-region-function) +(defvar lpr-headers-switches) (setq print-region-function 'direct-print-region-function) ;; Set this to nil if you have a port of the `pr' program @@ -435,6 +439,7 @@ indicates a specific program should be invoked." (direct-print-region-helper printer start end lpr-prog delete-text buf display rest))) +(defvar ps-print-region-function) (setq ps-print-region-function 'direct-ps-print-region-function) ;(setq ps-lpr-command "gs") |