]> git.eshelyaron.com Git - emacs.git/commitdiff
enable mhtml-mode by default
authorTom Tromey <tom@tromey.com>
Thu, 23 Mar 2017 17:34:27 +0000 (11:34 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 5 Apr 2017 21:53:39 +0000 (15:53 -0600)
* lisp/files.el (auto-mode-alist): Reference mhtml-mode, not
html-mode.
(magic-fallback-mode-alist): Likewise.
* lisp/net/eww.el (eww-view-source): Use mthml-mode.

lisp/files.el
lisp/net/eww.el

index 204c26416a666ef797980b19acd6456fcfdb2d08..6848818cad194adb06546ee643a0df582354e235 100644 (file)
@@ -2429,7 +2429,7 @@ since only a single case-insensitive search through the alist is made."
    (lambda (elt)
      (cons (purecopy (car elt)) (cdr elt)))
    `(;; do this first, so that .html.pl is Polish html, not Perl
-     ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . html-mode)
+     ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . mhtml-mode)
      ("\\.svgz?\\'" . image-mode)
      ("\\.svgz?\\'" . xml-mode)
      ("\\.x[bp]m\\'" . image-mode)
@@ -2791,8 +2791,8 @@ If FUNCTION is nil, then it is not called.  (That is a way of saying
                comment-re "*"
                "\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re "*\\)?"
                "[Hh][Tt][Mm][Ll]"))
-     . html-mode)
-    ("<!DOCTYPE[ \t\r\n]+[Hh][Tt][Mm][Ll]" . html-mode)
+     . mhtml-mode)
+    ("<!DOCTYPE[ \t\r\n]+[Hh][Tt][Mm][Ll]" . mhtml-mode)
     ;; These two must come after html, because they are more general:
     ("<\\?xml " . xml-mode)
     (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
index 619c703e01ca27db83916b53332ab5d6c2d9ecc8..fe316579142c902d21f49d012cf20d04c4b4a8b6 100644 (file)
@@ -641,8 +641,11 @@ Currently this means either text/html or application/xhtml+xml."
             (when (coding-system-p cs)
               (decode-coding-region (point-min) (point-max) cs)
               (setq buffer-file-coding-system last-coding-system-used))))
-       (when (fboundp 'html-mode)
-         (html-mode))))
+        (cond
+         ((fboundp 'mhtml-mode)
+          (mhtml-mode))
+         ((fboundp 'html-mode)
+         (html-mode)))))
     (view-buffer buf)))
 
 (defun eww-toggle-paragraph-direction ()