summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorKarel Klíc <kklic@redhat.com>2010-12-10 18:48:23 -0800
committerGlenn Morris <rgm@gnu.org>2010-12-10 18:48:23 -0800
commit1e5d2a048d4c76ba4aa0c86f7393297b0d3cd373 (patch)
tree12ea7bfa19227f04d6df564d9302d68560e425b9 /lisp/files.el
parentd1ddd1d02e9d341296a9874111ea684cafe96ccf (diff)
downloademacs-1e5d2a048d4c76ba4aa0c86f7393297b0d3cd373.tar.gz
emacs-1e5d2a048d4c76ba4aa0c86f7393297b0d3cd373.tar.bz2
emacs-1e5d2a048d4c76ba4aa0c86f7393297b0d3cd373.zip
* lisp/files.el (auto-mode-alist): Use html-mode for *.xhtml.
(This really only affects empty files.) Fixes: debbugs:7606
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 09e2a4e0725..460b005b9ef 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2232,7 +2232,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
- ("\\.s?html?\\(\\.[a-zA-Z_]+\\)?\\'" . html-mode)
+ ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . html-mode)
("\\.svgz?\\'" . image-mode)
("\\.svgz?\\'" . xml-mode)
("\\.x[bp]m\\'" . image-mode)