From: Dave Love Date: Tue, 6 Mar 2001 17:01:42 +0000 (+0000) Subject: custom-buffer-done-function <- Custom-buffer-done X-Git-Tag: emacs-pretest-21.0.100~176 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc49c316c3f98abbcf8ee6da514af25f0c4c8cc8;p=emacs.git custom-buffer-done-function <- Custom-buffer-done '(lambda <- (function (lambda in hook --- 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