diff options
| author | Richard M. Stallman | 1997-08-12 05:47:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-12 05:47:05 +0000 |
| commit | 7c96c058a6c1bbfc516d6f49fefd714f5bdab754 (patch) | |
| tree | ce8195a687459bd00e8429cbbb55676f7f1f4cc7 | |
| parent | 0cdbb11dee301e1537bcdab1f4ae53f2515db274 (diff) | |
| download | emacs-7c96c058a6c1bbfc516d6f49fefd714f5bdab754.tar.gz emacs-7c96c058a6c1bbfc516d6f49fefd714f5bdab754.zip | |
(dos-print-region-function): Force EOL conversion to DOS CR-LF pairs.
| -rw-r--r-- | lisp/dos-fns.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/dos-fns.el b/lisp/dos-fns.el index c640633000c..e3ae53bd070 100644 --- a/lisp/dos-fns.el +++ b/lisp/dos-fns.el | |||
| @@ -139,11 +139,14 @@ Writes the region to the device or file which is a value of | |||
| 139 | `dos-printer' \(which see\). Ignores any arguments beyond | 139 | `dos-printer' \(which see\). Ignores any arguments beyond |
| 140 | START and END." | 140 | START and END." |
| 141 | 141 | ||
| 142 | (write-region start end dos-printer t 0) | 142 | ;; DOS printers need the lines to end with CR-LF pairs, so make |
| 143 | ;; Make each print-out start on a new page, but don't waste | 143 | ;; sure it always happens that way. |
| 144 | ;; paper if there was a form-feed at the end of this file. | 144 | (let ((coding-system-for-write 'undecided-dos)) |
| 145 | (if (not (char-equal (char-after (1- end)) ?\C-l)) | 145 | (write-region start end dos-printer t 0) |
| 146 | (write-region "\f" nil dos-printer t 0))) | 146 | ;; Make each print-out start on a new page, but don't waste |
| 147 | ;; paper if there was a form-feed at the end of this file. | ||
| 148 | (if (not (char-equal (char-after (1- end)) ?\C-l)) | ||
| 149 | (write-region "\f" nil dos-printer t 0)))) | ||
| 147 | 150 | ||
| 148 | ;; Set this to nil if you have a port of the `lpr' program and | 151 | ;; Set this to nil if you have a port of the `lpr' program and |
| 149 | ;; you want to use it for printing. If the default setting is | 152 | ;; you want to use it for printing. If the default setting is |