]> git.eshelyaron.com Git - emacs.git/commitdiff
(Variable Definitions): Document new name custom-add-frequent-value.
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Dec 2006 16:36:26 +0000 (16:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Dec 2006 16:36:26 +0000 (16:36 +0000)
lispref/ChangeLog
lispref/customize.texi

index 39975f4e9e96da07bcc1568ac59a084302d9c23c..1e93fe189e077295164be746ada93fbf2e72ba56 100644 (file)
@@ -1,3 +1,8 @@
+2006-12-24  Richard Stallman  <rms@gnu.org>
+
+       * customize.texi (Variable Definitions): Document
+       new name custom-add-frequent-value.
+
 2006-12-19  Kim F. Storm  <storm@cua.dk>
 
        * commands.texi (Misc Events): User signals now result in sigusr1
index 6d93d6fdb9b9dfeddd4c5400b9673d7ba92a91c9..ee188c76c7924f7270acb7716108147cd26e34db 100644 (file)
@@ -418,18 +418,18 @@ Keywords}.  Here is an example, from the library @file{saveplace.el}:
 If a customization item has a type such as @code{hook} or
 @code{alist}, which supports @code{:options}, you can add additional
 values to the list from outside the @code{defcustom} declaration by
-calling @code{custom-add-option}.  For example, if you define a
+calling @code{custom-add-frequent-value}.  For example, if you define a
 function @code{my-lisp-mode-initialization} intended to be called from
 @code{emacs-lisp-mode-hook}, you might want to add that to the list of
 reasonable values for @code{emacs-lisp-mode-hook}, but not by editing
 its definition.  You can do it thus:
 
 @example
-(custom-add-option 'emacs-lisp-mode-hook
-                   'my-lisp-mode-initialization)
+(custom-add-frequent-value 'emacs-lisp-mode-hook
+   'my-lisp-mode-initialization)
 @end example
 
-@defun custom-add-option symbol value
+@defun custom-add-frequent-value symbol value
 For the customization option @var{symbol}, add @var{value} to the
 list of reasonable values.