diff options
author | Jim Blandy <jimb@redhat.com> | 1992-12-12 15:21:21 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-12-12 15:21:21 +0000 |
commit | 785dd21ca86d6f5b80720bd62f2826c0bdb75264 (patch) | |
tree | 4c19fe4d7eaf005bfdebaa4a3a1c4276c28edfd7 /lisp/lpr.el | |
parent | 3c75b559194a9fc5e83b2d4f6793f27ae04e048b (diff) | |
download | emacs-785dd21ca86d6f5b80720bd62f2826c0bdb75264.tar.gz |
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
defconsts.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 4 |
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") |