diff options
| -rw-r--r-- | lisp/lpr.el | 7 |
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.") | |||
| 79 | (print-region-1 start end lpr-switches t)) | 79 | (print-region-1 start end lpr-switches t)) |
| 80 | 80 | ||
| 81 | (defun print-region-1 (start end switches page-headers) | 81 | (defun print-region-1 (start end switches page-headers) |
| 82 | ;; Avoid having a space in the job name | 82 | ;; On some MIPS system, having a space in the job name |
| 83 | ;; because on some MIPS system that crashes the printer demon. | 83 | ;; crashes the printer demon. But using dashes looks ugly |
| 84 | (let ((name (concat (buffer-name) "-Emacs-buffer")) | 84 | ;; and it seems to annoying to do for that MIPS system. |
| 85 | (let ((name (concat (buffer-name) " Emacs buffer")) | ||
| 85 | (title (concat (buffer-name) " Emacs buffer")) | 86 | (title (concat (buffer-name) " Emacs buffer")) |
| 86 | (width tab-width)) | 87 | (width tab-width)) |
| 87 | (save-excursion | 88 | (save-excursion |