branch: elpa
commit 8cd2b07e2074ad5e9fdbe6da8f580972f7b6de5d
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
Fix indentation in auto files.
* tex.el (TeX-auto-store): Fix indentation in auto files.
---
ChangeLog | 4 ++++
tex.el | 6 +++---
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d3cabd8..33e78b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-19 Tassilo Horn <[email protected]>
+
+ * tex.el (TeX-auto-store): Fix indentation in auto files.
+
2015-01-16 Arash Esbati <[email protected]>
* style/minted.el: Update copyright year.
diff --git a/tex.el b/tex.el
index ac404e0..e64af2a 100644
--- a/tex.el
+++ b/tex.el
@@ -3728,15 +3728,15 @@ If TEX is a directory, generate style files for all
files in the directory."
" '" (prin1-to-string pkg-opts) ")"))
(dolist (env verb-envs)
(insert
- (format "\n (add-to-list 'LaTeX-verbatim-environments-local
\"%s\")"
+ (format "\n (add-to-list 'LaTeX-verbatim-environments-local
\"%s\")"
env)))
(dolist (env verb-macros-braces)
(insert
- (format "\n (add-to-list 'LaTeX-verbatim-macros-with-braces-local
\"%s\")"
+ (format "\n (add-to-list
'LaTeX-verbatim-macros-with-braces-local \"%s\")"
env)))
(dolist (env verb-macros-delims)
(insert
- (format "\n (add-to-list 'LaTeX-verbatim-macros-with-delims-local
\"%s\")"
+ (format "\n (add-to-list
'LaTeX-verbatim-macros-with-delims-local \"%s\")"
env)))
(mapc (lambda (el) (TeX-auto-insert el style))
TeX-auto-parser)