diff options
author | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:10:57 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:10:57 +0000 |
commit | 3917863bc11c3936eb35d3c962e79d3717be612a (patch) | |
tree | 93804ca42e3b3761afda581f403939c635d72a69 /lisp/lpr.el | |
parent | f8e03ecbd33205b73cf81b79b93cb599b28767cd (diff) | |
download | emacs-3917863bc11c3936eb35d3c962e79d3717be612a.tar.gz |
(printer-name): Fix customize type.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index b6f650c765a..301a50af9a8 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -50,7 +50,9 @@ printers, or \"//hostname/printer\" for a shared network printer. You can also set it to a name of a file, in which case the output gets appended to that file. If you want to discard the printed output, set this to \"NUL\"." - :type 'file ; could use string but then we lose completion for files. + :type '(choice ; could use string but then we lose completion for files. + (file :tag "Name") + (const :tag "Default" nil)) :group 'lpr) ;;;###autoload |