summaryrefslogtreecommitdiff
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-07-01 23:59:32 +0000
committerRichard M. Stallman <rms@gnu.org>1994-07-01 23:59:32 +0000
commit130b90817b5e8b653f660bb397ab1d6c932a9acf (patch)
treef3a2fcec96646aa8029985aa085af4c29ba447da /lisp/lpr.el
parent8ef6ec79207a668b9085a4d00702cf39eeb92433 (diff)
downloademacs-130b90817b5e8b653f660bb397ab1d6c932a9acf.tar.gz
(print-region-1): Essentially undo previous change.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r--lisp/lpr.el7
1 files changed, 4 insertions, 3 deletions
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