aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/tex-mode.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 45975a4d8ab..241787155af 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-09-17 David Kastrup <dak@gnu.org>
2
3 * textmodes/tex-mode.el (tex-verbatim-environments):
4 Eliminate CL dependency.
5
12007-09-17 Richard Stallman <rms@gnu.org> 62007-09-17 Richard Stallman <rms@gnu.org>
2 7
3 * newcomment.el (comment-add): New arg EXTRA. 8 * newcomment.el (comment-add): New arg EXTRA.
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 5999586bd11..cfd5afebe4e 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -636,7 +636,7 @@ An alternative value is \" . \", if you use a font with a narrow period."
636(defvar tex-verbatim-environments 636(defvar tex-verbatim-environments
637 '("verbatim" "verbatim*")) 637 '("verbatim" "verbatim*"))
638(put 'tex-verbatim-environments 'safe-local-variable 638(put 'tex-verbatim-environments 'safe-local-variable
639 (lambda (x) (require 'cl) (every 'stringp x))) 639 (lambda (x) (null (delq t (mapcar 'stringp x)))))
640 640
641(defvar tex-font-lock-syntactic-keywords 641(defvar tex-font-lock-syntactic-keywords
642 '((eval . `(,(concat "^\\\\begin *{" 642 '((eval . `(,(concat "^\\\\begin *{"