diff options
| author | Juanma Barranquero | 2002-10-29 07:52:32 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-10-29 07:52:32 +0000 |
| commit | e1a68e89f4b5e39b8de31dd1d63753eb131f57d3 (patch) | |
| tree | 498b55733430e975545d28c72f609cd69a10f7b6 | |
| parent | 6bb8143894acfe56a2fefa7a8063c7fd8cb95118 (diff) | |
| download | emacs-e1a68e89f4b5e39b8de31dd1d63753eb131f57d3.tar.gz emacs-e1a68e89f4b5e39b8de31dd1d63753eb131f57d3.zip | |
(texinfo-environments): Add environment; copying, documentdescription,
ifplaintext, ifnotplaintext, and verbatim.
| -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." | |||
| 317 | "Syntactic keywords to catch comment delimiters in `texinfo-mode'.") | 317 | "Syntactic keywords to catch comment delimiters in `texinfo-mode'.") |
| 318 | 318 | ||
| 319 | (defconst texinfo-environments | 319 | (defconst texinfo-environments |
| 320 | '("cartouche" "defcv" "deffn" "defivar" "defmac" "defmethod" "defop" | 320 | '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac" |
| 321 | "defopt" "defspec" "deftp" "deftypefn" "deftypefun" "deftypevar" | 321 | "defmethod" "defop" "defopt" "defspec" "deftp" "deftypefn" |
| 322 | "deftypevr" "defun" "defvar" "defvr" "description" "detailmenu" | 322 | "deftypefun" "deftypevar" "deftypevr" "defun" "defvar" |
| 323 | "direntry" "display" "enumerate" "example" "flushleft" "flushright" | 323 | "defvr" "description" "detailmenu" "direntry" "display" |
| 324 | "format" "ftable" "group" "ifclear" "ifset" "ifhtml" "ifinfo" | 324 | "documentdescription" "enumerate" "example" "flushleft" |
| 325 | "ifnothtml" "ifnotinfo" "ifnottex" "iftex" "ignore" "itemize" "lisp" | 325 | "flushright" "format" "ftable" "group" "ifclear" "ifset" |
| 326 | "macro" "menu" "multitable" "quotation" "smalldisplay" "smallexample" | 326 | "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext" |
| 327 | "smallformat" "smalllisp" "table" "tex" "titlepage" "vtable") | 327 | "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" |
| 328 | "macro" "menu" "multitable" "quotation" "smalldisplay" | ||
| 329 | "smallexample" "smallformat" "smalllisp" "table" "tex" | ||
| 330 | "titlepage" "verbatim" "vtable") | ||
| 328 | "List of TeXinfo environments.") | 331 | "List of TeXinfo environments.") |
| 329 | 332 | ||
| 330 | (defconst texinfo-environment-regexp | 333 | (defconst texinfo-environment-regexp |