Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3e41a054
Commit
3e41a054
authored
Aug 11, 2013
by
Lars Magne Ingebrigtsen
Browse files
* net/eww.el (eww-display-html): Ignore coding system errors.
One web site uses "utf-8lias" as the coding system.
parent
6edea0a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/net/eww.el
lisp/net/eww.el
+3
-1
No files found.
lisp/ChangeLog
View file @
3e41a054
2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
* net/eww.el (eww-display-html): Ignore coding system errors. One
web site uses "utf-8lias" as the coding system.
2013-08-11 Juanma Barranquero <lekktu@gmail.com>
* frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
...
...
lisp/net/eww.el
View file @
3e41a054
...
...
@@ -199,7 +199,9 @@ word(s) will be searched for via `eww-search-prefix'."
(
defun
eww-display-html
(
charset
url
)
(
unless
(
eq
charset
'utf8
)
(
decode-coding-region
(
point
)
(
point-max
)
charset
))
(
condition-case
nil
(
decode-coding-region
(
point
)
(
point-max
)
charset
)
(
coding-system-error
nil
)))
(
let
((
document
(
list
'base
(
list
(
cons
'href
url
))
...
...
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