diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-04-16 04:31:13 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-04-16 04:31:13 +0000 |
commit | 05fcb8daf64fd80937b8e97a813a72b5f5c42a5f (patch) | |
tree | fc9a313e92da00adea4a059f7cc6014d340b41a4 /lisp | |
parent | 3257a7340a6c145a3226a096b6029b5e1f22f690 (diff) | |
download | emacs-05fcb8daf64fd80937b8e97a813a72b5f5c42a5f.tar.gz |
* emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt
property (Bug#2984).
Diffstat (limited to 'lisp')
-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 @@ +2009-04-16 Robert Brown <brown@google.com> (tiny change) + + * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt + property (Bug#2984). + 2009-04-16 Leo <sdl.web@gmail.com> (tiny change) * 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 @@ (put 'defvar 'doc-string-elt 3) (put 'defcustom 'doc-string-elt 3) (put 'deftheme 'doc-string-elt 2) +(put 'deftype 'doc-string-elt 3) (put 'defconst 'doc-string-elt 3) (put 'defmacro 'doc-string-elt 3) (put 'defmacro* 'doc-string-elt 3) |