diff options
author | Juri Linkov <juri@jurta.org> | 2004-11-11 21:39:41 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2004-11-11 21:39:41 +0000 |
commit | 81668eb26016c75dcc5808f638ec1c4fac4300c2 (patch) | |
tree | 45b5eb637e4307e58de1405731f18776e93d96b4 | |
parent | 6d1289c3384c231d185e43cdcefbfd49007887a1 (diff) | |
download | emacs-81668eb26016c75dcc5808f638ec1c4fac4300c2.tar.gz |
(sgml-html-meta-auto-coding-function):
Remove > after <html to allow HTML attributes.
-rw-r--r-- | lisp/international/mule.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index f5294fea92f..9136a257ee1 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -2126,7 +2126,7 @@ This function is intended to be added to `auto-coding-functions'." (save-excursion (forward-line 10) (point)))) - (when (and (search-forward "<html>" size t) + (when (and (search-forward "<html" size t) (re-search-forward "<meta\\s-+http-equiv=\"content-type\"\\s-+content=\"text/\\sw+;\\s-*charset=\\(.+?\\)\"" size t)) (let* ((match (match-string 1)) (sym (intern (downcase match)))) |