diff options
author | Jason Rumney <jasonr@gnu.org> | 2008-01-23 00:52:17 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2008-01-23 00:52:17 +0000 |
commit | 93e45e6392fb63d949d3d6bf31d1293108979753 (patch) | |
tree | 715bcdfcdb8d352276ec0f4a079d9df5c61a9ed1 /lisp/lpr.el | |
parent | 645b6388d5bae5304098c1e773694beffc3478e9 (diff) |
(printer-name): Do not set on MS Windows.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index 6083cc5016..7f11d3efe8 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -47,7 +47,7 @@ ;;;###autoload (defcustom printer-name - (and lpr-windows-system "PRN") + (and (memq system-type '(emx ms-dos)) "PRN") "*The name of a local printer to which data is sent for printing. \(Note that PostScript files are sent to `ps-printer-name', which see.\) |