Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7f902e70
Commit
7f902e70
authored
Nov 23, 2014
by
Lars Magne Ingebrigtsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* net/eww.el (eww-display-html): Decode the document-defined charset.
parent
5d9ddb96
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/eww.el
lisp/net/eww.el
+2
-1
No files found.
lisp/ChangeLog
View file @
7f902e70
2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
* net/eww.el (eww-display-html): Decode the document-defined charset.
2014-11-23 Ivan Shmakov <ivan@siamics.net>
* net/eww.el (eww-suggest-uris): New variable.
...
...
lisp/net/eww.el
View file @
7f902e70
...
...
@@ -356,7 +356,8 @@ See the `eww-search-prefix' variable for the search engine used."
(
progn
(
unless
(
eq
charset
encode
)
(
condition-case
nil
(
decode-coding-region
(
point
)
(
point-max
)
encode
)
(
decode-coding-region
(
point
)
(
point-max
)
(
or
encode
charset
))
(
coding-system-error
nil
)))
(
libxml-parse-html-region
(
point
)
(
point-max
))))))
(
source
(
and
(
null
document
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment