diff options
| author | Lars Magne Ingebrigtsen | 2011-07-03 01:52:35 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-03 01:52:35 +0200 |
| commit | 8a20ca4cb08150fa42c18b9b2147226077d9a9b0 (patch) | |
| tree | 6c4f70c19e80a2c72bed39d2d2ce3e0aff5d6b21 /doc | |
| parent | 7a8e04f79efdefcb3eb7cb2cf5dbb454a78cf24e (diff) | |
| download | emacs-8a20ca4cb08150fa42c18b9b2147226077d9a9b0.tar.gz emacs-8a20ca4cb08150fa42c18b9b2147226077d9a9b0.zip | |
Clarify that SETFUNCTION is only used in the Customize user interface
(bug#6089).
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/customize.texi | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index c3414e288ac..a87cd201676 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * customize.texi (Variable Definitions): Clarify that SETFUNCTION | ||
| 4 | is only used in the Customize user interface (bug#6089). | ||
| 5 | |||
| 3 | * display.texi (Showing Images): Mention the point of sliced | 6 | * display.texi (Showing Images): Mention the point of sliced |
| 4 | images (bug#7836). | 7 | images (bug#7836). |
| 5 | 8 | ||
diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi index cb32d0ef340..ff658eb81f8 100644 --- a/doc/lispref/customize.texi +++ b/doc/lispref/customize.texi | |||
| @@ -326,11 +326,12 @@ individual types for a description of how to use @code{:options}. | |||
| 326 | @item :set @var{setfunction} | 326 | @item :set @var{setfunction} |
| 327 | @kindex set@r{, @code{defcustom} keyword} | 327 | @kindex set@r{, @code{defcustom} keyword} |
| 328 | Specify @var{setfunction} as the way to change the value of this | 328 | Specify @var{setfunction} as the way to change the value of this |
| 329 | option. The function @var{setfunction} should take two arguments, a | 329 | option when using the Customize user interface. The function |
| 330 | symbol (the option name) and the new value, and should do whatever is | 330 | @var{setfunction} should take two arguments, a symbol (the option |
| 331 | necessary to update the value properly for this option (which may not | 331 | name) and the new value, and should do whatever is necessary to update |
| 332 | mean simply setting the option as a Lisp variable). The default for | 332 | the value properly for this option (which may not mean simply setting |
| 333 | @var{setfunction} is @code{set-default}. | 333 | the option as a Lisp variable). The default for @var{setfunction} is |
| 334 | @code{set-default}. | ||
| 334 | 335 | ||
| 335 | @item :get @var{getfunction} | 336 | @item :get @var{getfunction} |
| 336 | @kindex get@r{, @code{defcustom} keyword} | 337 | @kindex get@r{, @code{defcustom} keyword} |