From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/5598 Path: main.gmane.org!not-for-mail From: David C Worenklein Newsgroups: gmane.emacs.gnus.general Subject: Re: Lots of Topics Date: Tue, 19 Mar 96 11:47:29 -0500 Message-ID: <9603191647.AA26670@mis_bo9.it.gcm.com> References: <199603191346.OAA18250@filippo.sfs.nphil.uni-tuebingen.de> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035146178 820 80.91.224.250 (20 Oct 2002 20:36:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:36:18 +0000 (UTC) Cc: ding@ifi.uio.no Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.3/8.6.9) with SMTP id JAA27090 for ; Tue, 19 Mar 1996 09:54:49 -0800 Original-Received: from gcm.com (gcm.com [146.121.48.2]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Tue, 19 Mar 1996 17:48:00 +0100 Original-Received: (from uucp@localhost) by gcm.com (8.6.9/8.6.9) with UUCP id LAA17571; Tue, 19 Mar 1996 11:50:11 -0500 Original-Received: from mis_bo9.it.gcm.com by gcm.com (4.1/GCM-2.0m) id AA25801; Tue, 19 Mar 96 11:47:30 EST Original-Received: by mis_bo9.it.gcm.com (4.1/SMI-4.1) id AA26670; Tue, 19 Mar 96 11:47:29 EST In-Reply-To: John Griffith's message of Tue, 19 Mar 1996 14:46:19 +0100 Original-To: John Griffith Gcc: nnfolder+archive:misc-mail Xref: main.gmane.org gmane.emacs.gnus.general:5598 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:5598 In article <199603191346.OAA18250@filippo.sfs.nphil.uni-tuebingen.de> John Griffith writes: > From: John Griffith > Cc: griffith@sfs.nphil.uni-tuebingen.de > Date: Tue, 19 Mar 1996 14:46:19 +0100 > X-From-Line: ding-request@ifi.uio.no Tue Mar 19 10:42:29 1996 > > I have a couple requests related to topic hierarchies. > > 1) I would like an option to only show topics if there is something > unread-ish in it. > > Ie. > > Topic0 > Topic1 > group1 > Topic2 > Topic3 > group2 > > Do not show Topic2 here since there is nothing in it. This could > really cut out uninteresting screen clutter. Of course this also > requires a way to show all topics even if there isn't anything in > them. Here's a crude patch (to 0.54) *** gnus-topic.el Mon Mar 18 09:05:55 1996 --- gnus-topic.new Tue Mar 19 11:45:45 1996 *************** *** 185,195 **** gnus-topic-tallied-groups))) (push (gnus-info-group info) gnus-topic-tallied-groups) (incf unread (car entry)))) (goto-char beg) ;; Insert the topic line. ! (unless silent (gnus-extent-start-open (point)) (gnus-topic-insert-topic-line (car type) visiblep (not (eq (nth 2 type) 'hidden)) level all-entries unread)) --- 185,196 ---- gnus-topic-tallied-groups))) (push (gnus-info-group info) gnus-topic-tallied-groups) (incf unread (car entry)))) (goto-char beg) ;; Insert the topic line. ! (unless (or silent ! (= (point) (point-max))) (gnus-extent-start-open (point)) (gnus-topic-insert-topic-line (car type) visiblep (not (eq (nth 2 type) 'hidden)) level all-entries unread))