From: Richard M. Stallman Date: Fri, 1 Jul 1994 23:59:32 +0000 (+0000) Subject: (print-region-1): Essentially undo previous change. X-Git-Tag: emacs-19.34~7740 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=904d76247e02548123cd452ca3cab0a0ae0df1f4;p=emacs.git (print-region-1): Essentially undo previous change. --- diff --git a/lisp/lpr.el b/lisp/lpr.el index a93fc960237..7f5ff8d1542 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el @@ -79,9 +79,10 @@ See definition of `print-region-1' for calling conventions.") (print-region-1 start end lpr-switches t)) (defun print-region-1 (start end switches page-headers) - ;; Avoid having a space in the job name - ;; because on some MIPS system that crashes the printer demon. - (let ((name (concat (buffer-name) "-Emacs-buffer")) + ;; On some MIPS system, having a space in the job name + ;; crashes the printer demon. But using dashes looks ugly + ;; and it seems to annoying to do for that MIPS system. + (let ((name (concat (buffer-name) " Emacs buffer")) (title (concat (buffer-name) " Emacs buffer")) (width tab-width)) (save-excursion