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 | 7114f404be6136811b52b930f979fb5387213b8c (patch) | |
tree | 2a0dac92b92e1c59960411c15f2665327bfa2684 /lisp/lpr.el | |
parent | 9ca74466e311b7c77a9676d7af3deebfdd99f9a2 (diff) | |
download | emacs-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.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") |