monnier pushed a commit to branch externals/auctex
in repository elpa.
commit e39e0dab8cf59cc7574ac8537a82f70ccc57e0d0
Author: Tassilo Horn <[email protected]>
Date: Fri Nov 8 10:55:32 2013 +0100
void-function error fix.
* latex.el (LaTeX-common-initialization): Fix void-function
LaTeX-symbol-list error.
---
ChangeLog | 5 +++++
latex.el | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 945802c..600e061 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-08 Tassilo Horn <[email protected]>
+
+ * latex.el (LaTeX-common-initialization): Fix void-function
+ LaTeX-symbol-list error.
+
2013-11-05 Mos� Giordano <[email protected]>
* doc/auctex.texi (Folding): Document `TeX-fold-auto' and
diff --git a/latex.el b/latex.el
index 095a83c..de5de5e 100644
--- a/latex.el
+++ b/latex.el
@@ -5645,7 +5645,7 @@ i.e. you do _not_ have to cater for this yourself by
adding \\\\' or $."
("\\\\begin{\\([A-Za-z]*\\)" 1 LaTeX-environment-list "}")
("\\\\end{\\([A-Za-z]*\\)" 1 LaTeX-environment-list "}")
("\\\\renewcommand\\*?{\\\\\\([A-Za-z]*\\)"
- 1 LaTeX-symbol-list "}")
+ 1 TeX-symbol-list "}")
("\\\\renewenvironment\\*?{\\([A-Za-z]*\\)"
1 LaTeX-environment-list "}")
("\\\\\\(this\\)?pagestyle{\\([A-Za-z]*\\)"