# HG changeset patch # User Stefan Monnier # Date 1003987350 0 # Node ID 72bbea2ef3585f5c3bf7bdd16a26eb6bfa897060 # Parent c7285f3374030db849ddd849042ce287dc7c595a (font-lock-keywords): Make sure texinfo-clone-environment is called. diff -r c7285f337403 -r 72bbea2ef358 lisp/textmodes/texinfo.el --- a/lisp/textmodes/texinfo.el Thu Oct 25 05:13:57 2001 +0000 +++ b/lisp/textmodes/texinfo.el Thu Oct 25 05:22:30 2001 +0000 @@ -359,7 +359,7 @@ ("@\\(dmn\\|acronym\\|value\\){\\([^}]+\\)" 2 font-lock-builtin-face) ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-keyword-face keep) (,texinfo-environment-regexp - 1 (texinfo-clone-environment (match-beginning 1) (match-end 1))) + 1 (texinfo-clone-environment (match-beginning 1) (match-end 1)) keep) (,(concat "^@" (regexp-opt (mapcar 'car texinfo-section-list) t) ".*\n") 0 texinfo-heading-face t)) "Additional expressions to highlight in TeXinfo mode.")