diff options
| author | Stefan Monnier | 2002-11-02 02:16:36 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-11-02 02:16:36 +0000 |
| commit | 5ae0d69704f5c3f505a642db8e8895c4e1f764a1 (patch) | |
| tree | 6d650f6ac67c368df5852cebf20d82f14d23036c | |
| parent | 2df609391621fd9a935c3f278692fca89b55b0ec (diff) | |
| download | emacs-5ae0d69704f5c3f505a642db8e8895c4e1f764a1.tar.gz emacs-5ae0d69704f5c3f505a642db8e8895c4e1f764a1.zip | |
(tex-common-initialization): comment-start-skip shouldn't match on next line.
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 3715a7dd7c8..f051359143d 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el | |||
| @@ -897,7 +897,7 @@ Entering SliTeX mode runs the hook `text-mode-hook', then the hook | |||
| 897 | (set (make-local-variable 'comment-start) "%") | 897 | (set (make-local-variable 'comment-start) "%") |
| 898 | (set (make-local-variable 'comment-add) 1) | 898 | (set (make-local-variable 'comment-add) 1) |
| 899 | (set (make-local-variable 'comment-start-skip) | 899 | (set (make-local-variable 'comment-start-skip) |
| 900 | "\\(\\(^\\|[^\\]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)") | 900 | "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)") |
| 901 | (set (make-local-variable 'parse-sexp-ignore-comments) t) | 901 | (set (make-local-variable 'parse-sexp-ignore-comments) t) |
| 902 | (set (make-local-variable 'compare-windows-whitespace) | 902 | (set (make-local-variable 'compare-windows-whitespace) |
| 903 | 'tex-categorize-whitespace) | 903 | 'tex-categorize-whitespace) |