Mercurial > emacs
changeset 36593:4567e1729217
custom-buffer-done-function <- Custom-buffer-done
'(lambda <- (function (lambda in hook
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 06 Mar 2001 17:01:42 +0000 |
parents | d7844f81d258 |
children | 756c28377036 |
files | man/custom.texi |
diffstat | 1 files changed, 8 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/man/custom.texi Tue Mar 06 16:36:33 2001 +0000 +++ b/man/custom.texi Tue Mar 06 17:01:42 2001 +0000 @@ -545,14 +545,14 @@ [Reset] [Reset to Saved] [Erase Customization] [Finish] @end smallexample -@vindex Custom-buffer-done +@vindex custom-buffer-done-function @noindent Invoking @samp{[Finish]} either buries or kills this customization -buffer according to the setting of the option @code{Custom-buffer-done}; -the default is to bury the buffer. -Each of the other fields performs an operation---set, save or reset---on -each of the items in the buffer that could meaningfully be set, saved or -reset. +buffer according to the setting of the option +@code{custom-buffer-done-function}; the default is to bury the buffer. +Each of the other fields performs an operation---set, save or +reset---on each of the items in the buffer that could meaningfully be +set, saved or reset. @node Face Customization @subsubsection Customizing Faces @@ -757,9 +757,8 @@ @group (add-hook 'c-mode-common-hook - (function - (lambda () - (c-add-style "my-style" my-c-style t)))) + '(lambda () + (c-add-style "my-style" my-c-style t))) @end group @end example