diff man/gnus-faq.texi @ 28344:54fda0e8528a

Weed out redundant uses of `function'
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 27 Mar 2000 04:29:55 +0000
parents ac7e9e5e2ccb
children 9c198c1dc72f
line wrap: on
line diff
--- a/man/gnus-faq.texi	Mon Mar 27 04:20:08 2000 +0000
+++ b/man/gnus-faq.texi	Mon Mar 27 04:29:55 2000 +0000
@@ -529,22 +529,21 @@
 ;;; Don't auto-select first article if reading sources, or archives or
 ;;; jobs postings, etc. and just display the summary buffer
 (add-hook 'gnus-select-group-hook
-	  (function
-	   (lambda ()
-	     (cond ((string-match "sources" gnus-newsgroup-name)
-		    (setq gnus-auto-select-first nil))
-			   ((string-match "jobs" gnus-newsgroup-name)
-				(setq gnus-auto-select-first nil))
-		   ((string-match "comp\\.archives" gnus-newsgroup-name)
-		    (setq gnus-auto-select-first nil))
-		   ((string-match "reviews" gnus-newsgroup-name)
-		    (setq gnus-auto-select-first nil))
-		   ((string-match "announce" gnus-newsgroup-name)
-		    (setq gnus-auto-select-first nil))
-		   ((string-match "binaries" gnus-newsgroup-name)
-		    (setq gnus-auto-select-first nil))
-		   (t
-		    (setq gnus-auto-select-first t))))))
+	  (lambda ()
+	    (cond ((string-match "sources" gnus-newsgroup-name)
+	           (setq gnus-auto-select-first nil))
+	       	   ((string-match "jobs" gnus-newsgroup-name)
+	       		(setq gnus-auto-select-first nil))
+	          ((string-match "comp\\.archives" gnus-newsgroup-name)
+	           (setq gnus-auto-select-first nil))
+	          ((string-match "reviews" gnus-newsgroup-name)
+	           (setq gnus-auto-select-first nil))
+	          ((string-match "announce" gnus-newsgroup-name)
+	           (setq gnus-auto-select-first nil))
+	          ((string-match "binaries" gnus-newsgroup-name)
+	           (setq gnus-auto-select-first nil))
+	          (t
+	           (setq gnus-auto-select-first t)))))
 @end lisp
 
 @item