mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-08 21:29:37 +00:00
Make nneething allow CRLF-encoded files (bug#32940)
* lisp/gnus/nneething.el (nneething-request-article): Bind coding system to raw-text instead of binary when reading a file, that may be CRLF-encoded (bug#32940).
This commit is contained in:
parent
2cae1cf6f8
commit
79bda3bc47
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ included.")
|
|||
(file-exists-p file) ; The file exists.
|
||||
(not (file-directory-p file)) ; It's not a dir.
|
||||
(save-excursion
|
||||
(let ((nnmail-file-coding-system 'binary))
|
||||
(let ((nnmail-file-coding-system 'raw-text))
|
||||
(nnmail-find-file file)) ; Insert the file in the nntp buf.
|
||||
(unless (nnheader-article-p) ; Either it's a real article...
|
||||
(let ((type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue