aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-04-16 04:31:13 +0000
committerChong Yidong2009-04-16 04:31:13 +0000
commit05fcb8daf64fd80937b8e97a813a72b5f5c42a5f (patch)
treefc9a313e92da00adea4a059f7cc6014d340b41a4
parent3257a7340a6c145a3226a096b6029b5e1f22f690 (diff)
downloademacs-05fcb8daf64fd80937b8e97a813a72b5f5c42a5f.tar.gz
emacs-05fcb8daf64fd80937b8e97a813a72b5f5c42a5f.zip
* emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt
property (Bug#2984).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/lisp-mode.el1
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 @@
12009-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
12009-04-16 Leo <sdl.web@gmail.com> (tiny change) 62009-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)