comparison lisp/lpr.el @ 269:2ca8cdb96a9f

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 13 May 1991 22:05:14 +0000
parents 990d2229354c
children cde1f15848c6
comparison
equal deleted inserted replaced
268:2dd411fe2f72 269:2ca8cdb96a9f
16 ;; You should have received a copy of the GNU General Public License 16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GNU Emacs; see the file COPYING. If not, write to 17 ;; along with GNU Emacs; see the file COPYING. If not, write to
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 19
20 20
21 ;;;###autoload (defconst lpr-switches nil 21 ;;;###autoload
22 ;;;###autoload "*List of strings to pass as extra switch args to lpr when it is invoked.") 22 (defconst lpr-switches nil "\
23 *List of strings to pass as extra switch args to lpr when it is invoked.")
23 24
24 (defvar lpr-command (if (eq system-type 'usg-unix-v) 25 (defvar lpr-command (if (eq system-type 'usg-unix-v)
25 "lp" "lpr") 26 "lp" "lpr")
26 "Shell command for printing a file") 27 "Shell command for printing a file")
27 28