# HG changeset patch # User Jim Blandy # Date 724173681 0 # Node ID b2a50ea75eea3c308f6b71bd4cf551ee4158130d # Parent 174817d23858e4782a4f7a54303e5721af909a6b * lpr.el (lpr-switches, lpr-command): Make these defvars, not defconsts. diff -r 174817d23858 -r b2a50ea75eea lisp/lpr.el --- a/lisp/lpr.el Sat Dec 12 15:19:13 1992 +0000 +++ b/lisp/lpr.el Sat Dec 12 15:21:21 1992 +0000 @@ -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")