diff options
author | Dave Love <fx@gnu.org> | 2001-03-06 17:01:42 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-03-06 17:01:42 +0000 |
commit | bc49c316c3f98abbcf8ee6da514af25f0c4c8cc8 (patch) | |
tree | f31bbc5eb9ffc58d258b555d43d7036b0f9b2256 /man | |
parent | 6c08bb38273ce9495c69dc2f11dd2c60d956ed32 (diff) | |
download | emacs-bc49c316c3f98abbcf8ee6da514af25f0c4c8cc8.tar.gz |
custom-buffer-done-function <- Custom-buffer-done
'(lambda <- (function (lambda in hook
Diffstat (limited to 'man')
-rw-r--r-- | man/custom.texi | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/man/custom.texi b/man/custom.texi index f7a9e3c9291..7b54c956d30 100644 --- a/man/custom.texi +++ b/man/custom.texi @@ -545,14 +545,14 @@ containing several active fields: [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 @@ lambda expression. @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 |