>From f7c4d5ce2399fc86b130fd55d3da2c313403f638 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 27 Feb 2019 14:35:51 -0800 Subject: [PATCH] Escape HTML NUL as � in eww * lisp/net/eww.el (eww-display-html): Escape NUL as � as this is more appropriate for HTML. --- lisp/net/eww.el | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 3ec6c1cfd3..3e9334532c 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -471,11 +471,9 @@ eww-display-html (decode-coding-region (point) (point-max) encode) (coding-system-error nil)) (save-excursion - ;; Remove CRLF and NULL before parsing. - (while (re-search-forward "\\(\r$\\)\\|\\(\000\\)" nil t) - (replace-match (if (match-beginning 1) - "" - "\\0") t t))) + ;; Remove CRLF and replace NUL with � before parsing. + (while (re-search-forward "\\(\r$\\)\\|\0" nil t) + (replace-match (if (match-beginning 1) "" "�") t t))) (libxml-parse-html-region (point) (point-max)))))) (source (and (null document) (buffer-substring (point) (point-max))))) -- 2.20.1