diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-10-29 07:52:32 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-10-29 07:52:32 +0000 |
commit | e1a68e89f4b5e39b8de31dd1d63753eb131f57d3 (patch) | |
tree | 498b55733430e975545d28c72f609cd69a10f7b6 /lisp/textmodes/texinfo.el | |
parent | 6bb8143894acfe56a2fefa7a8063c7fd8cb95118 (diff) | |
download | emacs-e1a68e89f4b5e39b8de31dd1d63753eb131f57d3.tar.gz |
(texinfo-environments): Add environment; copying, documentdescription,
ifplaintext, ifnotplaintext, and verbatim.
Diffstat (limited to 'lisp/textmodes/texinfo.el')
-rw-r--r-- | lisp/textmodes/texinfo.el | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 18d0e614f11..917c2e1ecf7 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -317,14 +317,17 @@ chapter." "Syntactic keywords to catch comment delimiters in `texinfo-mode'.") (defconst texinfo-environments - '("cartouche" "defcv" "deffn" "defivar" "defmac" "defmethod" "defop" - "defopt" "defspec" "deftp" "deftypefn" "deftypefun" "deftypevar" - "deftypevr" "defun" "defvar" "defvr" "description" "detailmenu" - "direntry" "display" "enumerate" "example" "flushleft" "flushright" - "format" "ftable" "group" "ifclear" "ifset" "ifhtml" "ifinfo" - "ifnothtml" "ifnotinfo" "ifnottex" "iftex" "ignore" "itemize" "lisp" - "macro" "menu" "multitable" "quotation" "smalldisplay" "smallexample" - "smallformat" "smalllisp" "table" "tex" "titlepage" "vtable") + '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac" + "defmethod" "defop" "defopt" "defspec" "deftp" "deftypefn" + "deftypefun" "deftypevar" "deftypevr" "defun" "defvar" + "defvr" "description" "detailmenu" "direntry" "display" + "documentdescription" "enumerate" "example" "flushleft" + "flushright" "format" "ftable" "group" "ifclear" "ifset" + "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext" + "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" + "macro" "menu" "multitable" "quotation" "smalldisplay" + "smallexample" "smallformat" "smalllisp" "table" "tex" + "titlepage" "verbatim" "vtable") "List of TeXinfo environments.") (defconst texinfo-environment-regexp |