From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/78002 Path: news.gmane.org!not-for-mail From: Antoine Levitt Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-group-list-ticked Date: Sat, 19 Mar 2011 01:45:55 +0100 Message-ID: <87lj0c6ipo.fsf@gmail.com> References: <87aagtr6du.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: dough.gmane.org 1300495611 14252 80.91.229.12 (19 Mar 2011 00:46:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 19 Mar 2011 00:46:51 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M26316@lists.math.uh.edu Sat Mar 19 01:46:44 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q0kJX-0007rZ-Nb for ding-account@gmane.org; Sat, 19 Mar 2011 01:46:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Q0kJ4-00055O-Dj; Fri, 18 Mar 2011 19:46:14 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Q0kJ2-000554-8Y for ding@lists.math.uh.edu; Fri, 18 Mar 2011 19:46:12 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Q0kJ1-0007Yg-21 for ding@lists.math.uh.edu; Fri, 18 Mar 2011 19:46:11 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1Q0kIy-0002F5-Rm for ding@gnus.org; Sat, 19 Mar 2011 01:46:08 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Q0kIx-0007gW-Em for ding@gnus.org; Sat, 19 Mar 2011 01:46:07 +0100 Original-Received: from ney92-7-78-233-218-202.fbx.proxad.net ([78.233.218.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 19 Mar 2011 01:46:07 +0100 Original-Received: from antoine.levitt by ney92-7-78-233-218-202.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 19 Mar 2011 01:46:07 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 64 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: ney92-7-78-233-218-202.fbx.proxad.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-Spam-Score: -1.0 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:78002 Archived-At: --=-=-= Content-Type: text/plain 17/03/11 18:57, Lars Magne Ingebrigtsen > Antoine Levitt writes: > >> The following patch does just that, and provides a binding for it. > > Thanks; applied. Could you provide a patch to gnus.texi, too? Oops, forgot about that, sorry. Here it is. > >> Speaking of which, the interface in gnus-group-prepare-function is >> slightly different than the one in gnus-group-prepare-flat, and code >> calls gnus-group-prepare-function assuming the extended interface from >> gnus-group-prepare-flat. Seems to me either gnus-group-prepare-function >> should document the extended interface, or it should just be dispensed >> with and gnus-group-prepare-flat called directly. Any reason to leave >> the indirection? > > Hm... I don't remember any more? Perhaps it has something to do with > topics? Doesn't seem so, since gnus-group-prepare-flat is the only function called, even when using topics. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=doc-gnus-group-list-ticked.diff diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 79b30a2..1c4cd4a 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,7 @@ +2011-03-19 Antoine Levitt + + * gnus.texi (Listing Groups): Document gnus-group-list-ticked + 2011-03-17 Jay Belanger * calc.texi (Logarithmic Units): Update the function names. diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index b55452c..9771392 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -3320,6 +3320,11 @@ List all groups with cached articles (@code{gnus-group-list-cached}). @findex gnus-group-list-dormant List all groups with dormant articles (@code{gnus-group-list-dormant}). +@item A ! +@kindex A ! (Group) +@findex gnus-group-list-ticked +List all groups with ticked articles (@code{gnus-group-list-ticked}). + @item A / @kindex A / (Group) @findex gnus-group-list-limit diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 90f3625..8d6c461 100644 --=-=-=--