# HG changeset patch # User Dave Love # Date 983898102 0 # Node ID 4567e172921713860e80e52fc193856f79e0f2a4 # Parent d7844f81d25848ff0dc761ee76ebf0a4837eca71 custom-buffer-done-function <- Custom-buffer-done '(lambda <- (function (lambda in hook diff -r d7844f81d258 -r 4567e1729217 man/custom.texi --- 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