aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-12-24 16:36:26 +0000
committerRichard M. Stallman2006-12-24 16:36:26 +0000
commitd78b75dd4de4c40e1c2cb51906d971801ffd57e9 (patch)
treed6a76502caedf3cde2d8d3291d4214d7403a1219
parented1281ecb9a6f9450fd95ddb8bafb24dd279ea94 (diff)
downloademacs-d78b75dd4de4c40e1c2cb51906d971801ffd57e9.tar.gz
emacs-d78b75dd4de4c40e1c2cb51906d971801ffd57e9.zip
(Variable Definitions): Document new name custom-add-frequent-value.
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/customize.texi8
2 files changed, 9 insertions, 4 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 39975f4e9e9..1e93fe189e0 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12006-12-24 Richard Stallman <rms@gnu.org>
2
3 * customize.texi (Variable Definitions): Document
4 new name custom-add-frequent-value.
5
12006-12-19 Kim F. Storm <storm@cua.dk> 62006-12-19 Kim F. Storm <storm@cua.dk>
2 7
3 * commands.texi (Misc Events): User signals now result in sigusr1 8 * commands.texi (Misc Events): User signals now result in sigusr1
diff --git a/lispref/customize.texi b/lispref/customize.texi
index 6d93d6fdb9b..ee188c76c79 100644
--- a/lispref/customize.texi
+++ b/lispref/customize.texi
@@ -418,18 +418,18 @@ Keywords}. Here is an example, from the library @file{saveplace.el}:
418If a customization item has a type such as @code{hook} or 418If a customization item has a type such as @code{hook} or
419@code{alist}, which supports @code{:options}, you can add additional 419@code{alist}, which supports @code{:options}, you can add additional
420values to the list from outside the @code{defcustom} declaration by 420values to the list from outside the @code{defcustom} declaration by
421calling @code{custom-add-option}. For example, if you define a 421calling @code{custom-add-frequent-value}. For example, if you define a
422function @code{my-lisp-mode-initialization} intended to be called from 422function @code{my-lisp-mode-initialization} intended to be called from
423@code{emacs-lisp-mode-hook}, you might want to add that to the list of 423@code{emacs-lisp-mode-hook}, you might want to add that to the list of
424reasonable values for @code{emacs-lisp-mode-hook}, but not by editing 424reasonable values for @code{emacs-lisp-mode-hook}, but not by editing
425its definition. You can do it thus: 425its definition. You can do it thus:
426 426
427@example 427@example
428(custom-add-option 'emacs-lisp-mode-hook 428(custom-add-frequent-value 'emacs-lisp-mode-hook
429 'my-lisp-mode-initialization) 429 'my-lisp-mode-initialization)
430@end example 430@end example
431 431
432@defun custom-add-option symbol value 432@defun custom-add-frequent-value symbol value
433For the customization option @var{symbol}, add @var{value} to the 433For the customization option @var{symbol}, add @var{value} to the
434list of reasonable values. 434list of reasonable values.
435 435