diff options
| author | Richard M. Stallman | 1995-06-18 16:45:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-18 16:45:20 +0000 |
| commit | 133d010c2d70f27affcc0f30ed5d87815e3724bc (patch) | |
| tree | 3368b5b520fb3fceaeebcac62af0fbe19b9192c3 | |
| parent | 845720b9f9eb8d29f5b94617c938417e1baf5a3d (diff) | |
| download | emacs-133d010c2d70f27affcc0f30ed5d87815e3724bc.tar.gz emacs-133d010c2d70f27affcc0f30ed5d87815e3724bc.zip | |
(texinfo-environment-regexp): Add @ifhtml, @html.
| -rw-r--r-- | lisp/textmodes/texinfo.el | 5 |
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. |
| 404 | Subexpression 1 is what goes into the corresponding `@end' statement.") | 405 | Subexpression 1 is what goes into the corresponding `@end' statement.") |