# HG changeset patch # User Chong Yidong # Date 1239856273 0 # Node ID 3193dcef2e7bcae578501945374e5bda4595d8e0 # Parent 16c9c375ab15f881b536f9a0f199c07f58e075e5 * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt property (Bug#2984). diff -r 16c9c375ab15 -r 3193dcef2e7b lisp/ChangeLog --- a/lisp/ChangeLog Thu Apr 16 04:08:15 2009 +0000 +++ b/lisp/ChangeLog Thu Apr 16 04:31:13 2009 +0000 @@ -1,3 +1,8 @@ +2009-04-16 Robert Brown (tiny change) + + * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt + property (Bug#2984). + 2009-04-16 Leo (tiny change) * ediff-wind.el (ediff-make-wide-display): Fix typo in frame diff -r 16c9c375ab15 -r 3193dcef2e7b lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Thu Apr 16 04:08:15 2009 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Thu Apr 16 04:31:13 2009 +0000 @@ -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)