aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-09-17 22:23:13 +0000
committerRichard M. Stallman2007-09-17 22:23:13 +0000
commit299ea3d32e572b24192e0c694b2e207cc7d4df48 (patch)
treeb5bbdfe14b31f9790b6e6a67e0ddf7e262d61cc5
parent5266b06b4f2410197210d9d9aa6929b8150fa4e4 (diff)
downloademacs-299ea3d32e572b24192e0c694b2e207cc7d4df48.tar.gz
emacs-299ea3d32e572b24192e0c694b2e207cc7d4df48.zip
(tex-verbatim-environments): Eliminate CL dependency.
-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 *{"