From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4252 Path: main.gmane.org!not-for-mail From: tom@smart.ruhr.de (Thomas Neumann) Newsgroups: gmane.emacs.gnus.general Subject: Re: fix(?) and questions [sgnus-0.17] Date: 04 Dec 1995 10:46:31 +0100 Organization: Ruhr.DE Sender: tom@smart.ruhr.de Message-ID: <87ka4dgo08.fsf@smart.ruhr.de> References: <"nz11.rz.un.726:03.12.95.16.47.05"@rz.uni-karlsruhe.de> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035145024 28978 80.91.224.250 (20 Oct 2002 20:17:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:17:04 +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 miranova.com (8.6.11/8.6.9) with ESMTP id CAA23809 for ; Mon, 4 Dec 1995 02:39:03 -0800 Original-Received: from smart.ruhr.de (smart.ruhr.de [193.100.176.36]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id ; Mon, 4 Dec 1995 10:45:43 +0100 Original-Received: (from tom@localhost) by smart.ruhr.de (8.6.12/8.6.12) id KAA09574; Mon, 4 Dec 1995 10:46:31 +0100 Original-To: larsi@ifi.uio.no (Lars Magne Ingebrigtsen) In-Reply-To: larsi@ifi.uio.no's message of 04 Dec 1995 02:51:01 +0100 Original-Lines: 34 Xref: main.gmane.org gmane.emacs.gnus.general:4252 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4252 > > 1) It seems to be impossible to get rid of the root of the topic-tree > > (that topic labeled "Gnus" on startup). > > Yes. But you can rename it. To "", for instance, if it really bugs > you. I tried to rename a topic (any topic), but it bombed out on me. Here's a quick fix *** gnus-topic.el~ Mon Dec 4 10:35:15 1995 --- gnus-topic.el Mon Dec 4 10:38:06 1995 *************** *** 607,611 **** (list (completing-read "Rename topic: " gnus-topic-alist nil t) ! (read-string (format "Rename %s to: ")))) (let ((top (gnus-topic-find-topology old-name)) (entry (assoc old-name gnus-topic-alist))) --- 607,611 ---- (list (completing-read "Rename topic: " gnus-topic-alist nil t) ! (read-string "New name: "))) (let ((top (gnus-topic-find-topology old-name)) (entry (assoc old-name gnus-topic-alist))) Renaming of topics seems to be a little bit goofy still. For instance, after renaming a topic the new name does not show up until one 'g'ets new news. -t