aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-11-27 23:05:42 +0000
committerStefan Monnier2003-11-27 23:05:42 +0000
commitd9cbee570fd2a7074b10f71314db2fcb62ecd785 (patch)
tree9099c0bb510456245c81d80259503e28d7b4c812
parentd46aeafce0075db28a222bdb419a1fb839567a0d (diff)
downloademacs-d9cbee570fd2a7074b10f71314db2fcb62ecd785.tar.gz
emacs-d9cbee570fd2a7074b10f71314db2fcb62ecd785.zip
(latex-mode): `tex-trailer' is not a regexp.
-rw-r--r--lisp/textmodes/tex-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index c6eeed16a20..87dc8fcbc00 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -902,7 +902,7 @@ subshell is initiated, `tex-shell-hook' is run."
902 (set (make-local-variable 'tex-start-of-header) 902 (set (make-local-variable 'tex-start-of-header)
903 "\\\\document\\(style\\|class\\)") 903 "\\\\document\\(style\\|class\\)")
904 (set (make-local-variable 'tex-end-of-header) "\\\\begin\\s-*{document}") 904 (set (make-local-variable 'tex-end-of-header) "\\\\begin\\s-*{document}")
905 (set (make-local-variable 'tex-trailer) "\\end\\s-*{document}\n") 905 (set (make-local-variable 'tex-trailer) "\\end{document}\n")
906 ;; A line containing just $$ is treated as a paragraph separator. 906 ;; A line containing just $$ is treated as a paragraph separator.
907 ;; A line starting with $$ starts a paragraph, 907 ;; A line starting with $$ starts a paragraph,
908 ;; but does not separate paragraphs if it has more stuff on it. 908 ;; but does not separate paragraphs if it has more stuff on it.