diff options
| author | Arni Magnusson | 2011-03-07 20:42:40 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-03-07 20:42:40 -0800 |
| commit | 25bbfb31d5a71dee8d6049e9bbe10dd7d4b65db9 (patch) | |
| tree | 737f24b1b7805e96c724046c0ab60fce82b8cd2b | |
| parent | e9c8529f6a9a38b35fbb9814c22b98e6099cddd2 (diff) | |
| download | emacs-25bbfb31d5a71dee8d6049e9bbe10dd7d4b65db9.tar.gz emacs-25bbfb31d5a71dee8d6049e9bbe10dd7d4b65db9.zip | |
texinfo.el addition for bug#2783.
* lisp/textmodes/texinfo.el (texinfo-environments):
Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/texinfo.el | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e96200885a0..6aa6993a70a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change) | ||
| 2 | |||
| 3 | * textmodes/texinfo.el (texinfo-environments): | ||
| 4 | Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783) | ||
| 5 | |||
| 1 | 2011-03-08 Glenn Morris <rgm@gnu.org> | 6 | 2011-03-08 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * cus-start.el (cursor-in-non-selected-windows): | 8 | * cus-start.el (cursor-in-non-selected-windows): |
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index dfd12a005a9..7e9ce9aff6d 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el | |||
| @@ -318,11 +318,12 @@ chapter." | |||
| 318 | 318 | ||
| 319 | (defconst texinfo-environments | 319 | (defconst texinfo-environments |
| 320 | '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac" | 320 | '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac" |
| 321 | "defmethod" "defop" "defopt" "defspec" "deftp" "deftypefn" | 321 | "defmethod" "defop" "defopt" "defspec" "deftp" "deftypecv" |
| 322 | "deftypefun" "deftypevar" "deftypevr" "defun" "defvar" | 322 | "deftypefn" "deftypefun" "deftypeivar" "deftypemethod" |
| 323 | "deftypeop" "deftypevar" "deftypevr" "defun" "defvar" | ||
| 323 | "defvr" "description" "detailmenu" "direntry" "display" | 324 | "defvr" "description" "detailmenu" "direntry" "display" |
| 324 | "documentdescription" "enumerate" "example" "flushleft" | 325 | "documentdescription" "enumerate" "example" "flushleft" |
| 325 | "flushright" "format" "ftable" "group" "ifclear" "ifset" | 326 | "flushright" "format" "ftable" "group" "html" "ifclear" "ifset" |
| 326 | "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext" | 327 | "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext" |
| 327 | "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" | 328 | "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" |
| 328 | "macro" "menu" "multitable" "quotation" "smalldisplay" | 329 | "macro" "menu" "multitable" "quotation" "smalldisplay" |