`raw-text-dos' instead of `raw-text'.
(insert-file-contents-as-raw-text): Likewise.
+1999-02-25 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * poem-20.el, poem-e20_2.el, poem-om.el
+ (find-file-noselect-as-raw-text): Use `raw-text-dos' instead of
+ `raw-text'.
+ (insert-file-contents-as-raw-text): Likewise.
+
1999-02-25 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* Makefile (install): Add voodoo comment `# $(MAKE)'.
automatic uncompression, etc.
Like `insert-file-contents-as-binary', but it converts line-break
code."
- (let ((coding-system-for-read 'raw-text)
+ (let ((coding-system-for-read 'raw-text-dos)
format-alist)
;; Returns list of absolute file name and length of data inserted.
(insert-file-contents filename visit beg end replace)))
(defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but it does not code and format conversion
except for line-break code."
- (let ((coding-system-for-read 'raw-text)
+ (let ((coding-system-for-read 'raw-text-dos)
format-alist)
(find-file-noselect filename nowarn rawfile)))
Like `insert-file-contents-as-binary', but it converts line-break
code."
(let ((flag enable-multibyte-characters)
- (coding-system-for-read 'raw-text)
+ (coding-system-for-read 'raw-text-dos)
format-alist)
(prog1
;; Returns list absolute file name and length of data inserted.
"Like `find-file-noselect', q.v., but it does not code and format conversion
except for line-break code."
(let ((flag enable-multibyte-characters)
- (coding-system-for-read 'raw-text)
+ (coding-system-for-read 'raw-text-dos)
format-alist)
(save-current-buffer
(prog1
Like `insert-file-contents-as-binary', but it converts line-break
code."
;; Returns list absolute file name and length of data inserted.
- (insert-file-contents-as-coding-system 'raw-text
+ (insert-file-contents-as-coding-system 'raw-text-dos
filename visit beg end replace))
(defun write-region-as-binary (start end filename
(defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but it does not code and format
conversion except for line-break code."
- (find-file-noselect-as-coding-system 'raw-text filename nowarn rawfile))
+ (find-file-noselect-as-coding-system 'raw-text-dos filename nowarn rawfile))
(defun save-buffer-as-binary (&optional args)
"Like `save-buffer', q.v., but don't encode."