summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-12-12 15:21:21 +0000
committerJim Blandy <jimb@redhat.com>1992-12-12 15:21:21 +0000
commit7114f404be6136811b52b930f979fb5387213b8c (patch)
tree2a0dac92b92e1c59960411c15f2665327bfa2684 /lisp/lpr.el
parent9ca74466e311b7c77a9676d7af3deebfdd99f9a2 (diff)
downloademacs-7114f404be6136811b52b930f979fb5387213b8c.tar.gz
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
defconsts.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r--lisp/lpr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index e8967db12a0..1f4ec62dfc1 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -24,11 +24,11 @@
;;; Code:
;;;###autoload
-(defconst lpr-switches nil
+(defvar lpr-switches nil
"*List of strings to pass as extra switch args to lpr when it is invoked.")
;;;###autoload
-(defconst lpr-command
+(defvar lpr-command
(if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix))
"lp" "lpr")
"*Shell command for printing a file")