aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-06-18 16:45:20 +0000
committerRichard M. Stallman1995-06-18 16:45:20 +0000
commit133d010c2d70f27affcc0f30ed5d87815e3724bc (patch)
tree3368b5b520fb3fceaeebcac62af0fbe19b9192c3
parent845720b9f9eb8d29f5b94617c938417e1baf5a3d (diff)
downloademacs-133d010c2d70f27affcc0f30ed5d87815e3724bc.tar.gz
emacs-133d010c2d70f27affcc0f30ed5d87815e3724bc.zip
(texinfo-environment-regexp): Add @ifhtml, @html.
-rw-r--r--lisp/textmodes/texinfo.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 0b53fab1496..2ed5a3291d1 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -396,9 +396,10 @@ value of texinfo-mode-hook."
396;;; Insert string commands 396;;; Insert string commands
397 397
398(defconst texinfo-environment-regexp 398(defconst texinfo-environment-regexp
399 "^@\\(f?table\\|enumerate\\|itemize\\|ifinfo\\|iftex\\|ifset\\|ifclear\ 399 "^@\\(f?table\\|enumerate\\|itemize\
400\\|ifhtml\\|ifinfo\\|iftex\\|ifset\\|ifclear\
400\\|example\\|quotation\\|lisp\\|smallexample\\|smalllisp\\|display\\|format\ 401\\|example\\|quotation\\|lisp\\|smallexample\\|smalllisp\\|display\\|format\
401\\|flushleft\\|flushright\\|ignore\\|group\\|tex\\|cartouche\\|menu\ 402\\|flushleft\\|flushright\\|ignore\\|group\\|tex\\|html\\|cartouche\\|menu\
402\\|titlepage\\|end\\|def[a-z]*[a-wyz]\\>\\)" 403\\|titlepage\\|end\\|def[a-z]*[a-wyz]\\>\\)"
403 "Regexp for environment-like Texinfo list commands. 404 "Regexp for environment-like Texinfo list commands.
404Subexpression 1 is what goes into the corresponding `@end' statement.") 405Subexpression 1 is what goes into the corresponding `@end' statement.")