aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2008-01-27 11:06:45 +0000
committerThien-Thi Nguyen2008-01-27 11:06:45 +0000
commitb9712b1c0d45bc75408516e3f49457c84c60ccc1 (patch)
treeed6b16168cb676e0f68e84ef1d2881b491f527ba
parent28cbade4188cfa3037c23bcadfbbbaaf3960bc58 (diff)
downloademacs-b9712b1c0d45bc75408516e3f49457c84c60ccc1.tar.gz
emacs-b9712b1c0d45bc75408516e3f49457c84c60ccc1.zip
(define-button-type): Clarify type of NAME in docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/button.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d6db38e535c..5ce427498ab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
2
3 * button.el (define-button-type): Clarify type of NAME in docstring.
4
12008-01-26 Stefan Monnier <monnier@iro.umontreal.ca> 52008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * server.el (server-buffer): New const. 7 * server.el (server-buffer): New const.
diff --git a/lisp/button.el b/lisp/button.el
index 5129df9b44f..0b45f2cec41 100644
--- a/lisp/button.el
+++ b/lisp/button.el
@@ -116,7 +116,7 @@ Buttons inherit them by setting their `category' property to that symbol."
116 116
117;;;###autoload 117;;;###autoload
118(defun define-button-type (name &rest properties) 118(defun define-button-type (name &rest properties)
119 "Define a `button type' called NAME. 119 "Define a `button type' called NAME (a symbol).
120The remaining arguments form a sequence of PROPERTY VALUE pairs, 120The remaining arguments form a sequence of PROPERTY VALUE pairs,
121specifying properties to use as defaults for buttons with this type 121specifying properties to use as defaults for buttons with this type
122\(a button's type may be set by giving it a `type' property when 122\(a button's type may be set by giving it a `type' property when