branch: elpa
commit fff941295dfe2b1b26bd5674be5366878230fb88
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
Add hva file assoc to auto-mode-alist (bug#19426)
* latex.el (auto-mode-alist): Add latex-mode association for HeVeA
files.
---
ChangeLog | 5 +++++
latex.el | 4 ++++
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 429c6af..285d073 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-22 Tassilo Horn <[email protected]>
+
+ * latex.el (auto-mode-alist): Add latex-mode association for HeVeA
+ files.
+
2014-12-21 Tassilo Horn <[email protected]>
* tex.el (TeX-parse-macro): Enclose arg in
diff --git a/latex.el b/latex.el
index 8b19c8b..0da018e 100644
--- a/latex.el
+++ b/latex.el
@@ -5701,6 +5701,10 @@ This happens when \\left is inserted."
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.drv\\'" . latex-mode))
+;; HeVeA files (LaTeX -> HTML converter: http://hevea.inria.fr/)
+;;;###autoload
+(add-to-list 'auto-mode-alist '("\\.hva\\'" . latex-mode))
+
;;;###autoload
(defun TeX-latex-mode ()
"Major mode in AUCTeX for editing LaTeX files.