# HG changeset patch # User Richard M. Stallman # Date 773107172 0 # Node ID 6a12a2845ccca99b8671e643ffcb96df5aabc79e # Parent 63ed4f3eb8d1bbe31fb1c24bfc8f9ffeb98aa916 (print-region-1): Essentially undo previous change. diff -r 63ed4f3eb8d1 -r 6a12a2845ccc lisp/lpr.el --- a/lisp/lpr.el Fri Jul 01 21:42:23 1994 +0000 +++ b/lisp/lpr.el Fri Jul 01 23:59:32 1994 +0000 @@ -79,9 +79,10 @@ (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