aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-09-18 09:10:57 +0000
committerAndreas Schwab1998-09-18 09:10:57 +0000
commit3917863bc11c3936eb35d3c962e79d3717be612a (patch)
tree93804ca42e3b3761afda581f403939c635d72a69
parentf8e03ecbd33205b73cf81b79b93cb599b28767cd (diff)
downloademacs-3917863bc11c3936eb35d3c962e79d3717be612a.tar.gz
emacs-3917863bc11c3936eb35d3c962e79d3717be612a.zip
(printer-name): Fix customize type.
-rw-r--r--lisp/lpr.el4
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
50can also set it to a name of a file, in which case the output gets 50can also set it to a name of a file, in which case the output gets
51appended to that file. If you want to discard the printed output, set 51appended to that file. If you want to discard the printed output, set
52this to \"NUL\"." 52this to \"NUL\"."
53 :type 'file ; could use string but then we lose completion for files. 53 :type '(choice ; could use string but then we lose completion for files.
54 (file :tag "Name")
55 (const :tag "Default" nil))
54 :group 'lpr) 56 :group 'lpr)
55 57
56;;;###autoload 58;;;###autoload