Index: auctex/font-latex.el
diff -u auctex/font-latex.el:5.145 auctex/font-latex.el:5.146
--- auctex/font-latex.el:5.145 Mon Dec 5 10:51:28 2005
+++ auctex/font-latex.el Tue Jan 24 11:31:03 2006
@@ -704,20 +704,14 @@
have changed."
;; Checks for non-emptiness of lists added in order to cater for
;; installations where `(regexp-opt-group nil)' would enter a loop.
- (let ((verb-envs (append (and (boundp 'LaTeX-verbatim-environments)
- LaTeX-verbatim-environments)
- (and (boundp 'LaTeX-verbatim-environments-local)
- LaTeX-verbatim-environments-local)))
+ (let ((verb-envs (and (fboundp 'LaTeX-verbatim-environments)
+ (LaTeX-verbatim-environments)))
(verb-macros-with-delims
- (append (and (boundp 'LaTeX-verbatim-macros-with-delims)
- LaTeX-verbatim-macros-with-delims)
- (and (boundp 'LaTeX-verbatim-macros-with-delims-local)
- LaTeX-verbatim-macros-with-delims-local)))
+ (and (fboundp 'LaTeX-verbatim-macros-with-delims)
+ (LaTeX-verbatim-macros-with-delims)))
(verb-macros-with-braces
- (append (and (boundp 'LaTeX-verbatim-macros-with-braces)
- LaTeX-verbatim-macros-with-braces)
- (and (boundp 'LaTeX-verbatim-macros-with-braces-local)
- LaTeX-verbatim-macros-with-braces-local))))
+ (and (fboundp 'LaTeX-verbatim-macros-with-braces)
+ (LaTeX-verbatim-macros-with-braces))))
(setq verb-envs (and verb-envs (regexp-opt verb-envs))
verb-macros-with-delims (and verb-macros-with-delims
(regexp-opt verb-macros-with-delims))
_______________________________________________
auctex-diffs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/auctex-diffs