Fix downloading non-text files in EWW
* lisp/net/eww.el (eww-download-callback): Bind coding-system-for-read to 'no-conversion', to avoid any code- or EOL-conversions in downloaded files. (Bug#30664)
This commit is contained in:
parent
832b9ece36
commit
04da8f4c29
1 changed files with 2 additions and 1 deletions
|
@ -1532,7 +1532,8 @@ Differences in #targets are ignored."
|
|||
eww-download-directory)))
|
||||
(goto-char (point-min))
|
||||
(re-search-forward "\r?\n\r?\n")
|
||||
(write-region (point) (point-max) file)
|
||||
(let ((coding-system-for-write 'no-conversion))
|
||||
(write-region (point) (point-max) file))
|
||||
(message "Saved %s" file))))
|
||||
|
||||
(defun eww-decode-url-file-name (string)
|
||||
|
|
Loading…
Add table
Reference in a new issue