comparison man/gnus.texi @ 34151:33df9c2e70bf

Don't quote lambdas.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 03 Dec 2000 22:11:57 +0000
parents 90acc0606378
children ae23bd13d2ee
comparison
equal deleted inserted replaced
34150:3f40525951d5 34151:33df9c2e70bf
21013 @end example 21013 @end example
21014 21014
21015 @item 21015 @item
21016 @example 21016 @example
21017 (add-hook 'gnus-exit-query-functions 21017 (add-hook 'gnus-exit-query-functions
21018 '(lambda () 21018 (lambda ()
21019 (if (and (file-exists-p nnmail-spool-file) 21019 (if (and (file-exists-p nnmail-spool-file)
21020 (> (nnheader-file-size nnmail-spool-file) 0)) 21020 (> (nnheader-file-size nnmail-spool-file) 0))
21021 (yes-or-no-p "New mail has arrived. Quit Gnus anyways? ") 21021 (yes-or-no-p "New mail has arrived. Quit Gnus anyways? ")
21022 (y-or-n-p "Are you sure you want to quit Gnus? ")))) 21022 (y-or-n-p "Are you sure you want to quit Gnus? "))))
21023 @end example 21023 @end example