aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJim Blandy1992-12-12 15:21:21 +0000
committerJim Blandy1992-12-12 15:21:21 +0000
commit7114f404be6136811b52b930f979fb5387213b8c (patch)
tree2a0dac92b92e1c59960411c15f2665327bfa2684 /lisp
parent9ca74466e311b7c77a9676d7af3deebfdd99f9a2 (diff)
downloademacs-7114f404be6136811b52b930f979fb5387213b8c.tar.gz
emacs-7114f404be6136811b52b930f979fb5387213b8c.zip
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
defconsts.
Diffstat (limited to 'lisp')
-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 @@
24;;; Code: 24;;; Code:
25 25
26;;;###autoload 26;;;###autoload
27(defconst lpr-switches nil 27(defvar lpr-switches nil
28 "*List of strings to pass as extra switch args to lpr when it is invoked.") 28 "*List of strings to pass as extra switch args to lpr when it is invoked.")
29 29
30;;;###autoload 30;;;###autoload
31(defconst lpr-command 31(defvar lpr-command
32 (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix)) 32 (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix))
33 "lp" "lpr") 33 "lp" "lpr")
34 "*Shell command for printing a file") 34 "*Shell command for printing a file")