diff options
| author | Chong Yidong | 2009-04-16 04:31:13 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-16 04:31:13 +0000 |
| commit | 05fcb8daf64fd80937b8e97a813a72b5f5c42a5f (patch) | |
| tree | fc9a313e92da00adea4a059f7cc6014d340b41a4 | |
| parent | 3257a7340a6c145a3226a096b6029b5e1f22f690 (diff) | |
| download | emacs-05fcb8daf64fd80937b8e97a813a72b5f5c42a5f.tar.gz emacs-05fcb8daf64fd80937b8e97a813a72b5f5c42a5f.zip | |
* emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt
property (Bug#2984).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 878361621b8..b35f7c8893b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-04-16 Robert Brown <brown@google.com> (tiny change) | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt | ||
| 4 | property (Bug#2984). | ||
| 5 | |||
| 1 | 2009-04-16 Leo <sdl.web@gmail.com> (tiny change) | 6 | 2009-04-16 Leo <sdl.web@gmail.com> (tiny change) |
| 2 | 7 | ||
| 3 | * ediff-wind.el (ediff-make-wide-display): Fix typo in frame | 8 | * ediff-wind.el (ediff-make-wide-display): Fix typo in frame |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index bd330a727c3..3e3d3960f97 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -132,6 +132,7 @@ | |||
| 132 | (put 'defvar 'doc-string-elt 3) | 132 | (put 'defvar 'doc-string-elt 3) |
| 133 | (put 'defcustom 'doc-string-elt 3) | 133 | (put 'defcustom 'doc-string-elt 3) |
| 134 | (put 'deftheme 'doc-string-elt 2) | 134 | (put 'deftheme 'doc-string-elt 2) |
| 135 | (put 'deftype 'doc-string-elt 3) | ||
| 135 | (put 'defconst 'doc-string-elt 3) | 136 | (put 'defconst 'doc-string-elt 3) |
| 136 | (put 'defmacro 'doc-string-elt 3) | 137 | (put 'defmacro 'doc-string-elt 3) |
| 137 | (put 'defmacro* 'doc-string-elt 3) | 138 | (put 'defmacro* 'doc-string-elt 3) |