From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4232 Path: main.gmane.org!not-for-mail From: Jens Lautenbacher Newsgroups: gmane.emacs.gnus.general Subject: first fixes... [sgnus-0.17] Date: Sun, 3 Dec 1995 05:12:25 +0100 Message-ID: <"nz11.rz.un.846:03.12.95.04.14.43"@rz.uni-karlsruhe.de> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035145007 28908 80.91.224.250 (20 Oct 2002 20:16:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:16:47 +0000 (UTC) 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 UAA14422 for ; Sat, 2 Dec 1995 20:51:45 -0800 Original-Received: from nz11.rz.uni-karlsruhe.de (nz11.rz.uni-karlsruhe.de [129.13.64.7]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sun, 3 Dec 1995 05:14:47 +0100 Original-Received: from tkmhp1.physik.uni-karlsruhe.de (actually tkmhp12.physik.uni-karlsruhe.de) by nz11.rz.uni-karlsruhe.de with SMTP (PP); Sun, 3 Dec 1995 05:14:33 +0100 Original-Received: by tkmhp1.physik.uni-karlsruhe.de (1.38.193.4/16.2) id AA00484; Sun, 3 Dec 1995 05:12:25 +0100 Original-To: ding@ifi.uio.no Xref: main.gmane.org gmane.emacs.gnus.general:4232 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4232 *** ChangeLog~ Sun Dec 3 02:14:46 1995 --- ChangeLog Sun Dec 3 05:07:47 1995 *************** *** 1,3 **** --- 1,11 ---- + Sun Dec 3 04:19:33 1995 Jens Lautenbacher + + * gnus-topic.el (gnus-topic-mode-map): Using mouse-2 to hide/show + topics works. + + * gnus.el: (gnus-summary-initial-limit): fetching of old articles + works in threads again if gnus-fetch-old-headers is t + Sun Dec 3 00:34:01 1995 Lars Magne Ingebrigtsen * gnus-topic.el (gnus-topic-delete): New command and keystroke. *** gnus.el~ Sun Dec 3 02:14:38 1995 --- gnus.el Sun Dec 3 04:20:07 1995 *************** *** 9579,9585 **** fetch-old-headers verbiage, and so on." ;; Most groups have nothing to remove. (if (and (null gnus-newsgroup-dormant) ! (not (eq gnus-fetch-old-headers 'some)) (null gnus-summary-expunge-below)) () ; Do nothing. (setq gnus-newsgroup-limits --- 9579,9586 ---- fetch-old-headers verbiage, and so on." ;; Most groups have nothing to remove. (if (and (null gnus-newsgroup-dormant) ! (not (or (eq gnus-fetch-old-headers 'some) ! gnus-fetch-old-headers)) (null gnus-summary-expunge-below)) () ; Do nothing. (setq gnus-newsgroup-limits *** gnus-topic.el~ Sun Dec 3 02:14:35 1995 --- gnus-topic.el Sun Dec 3 05:01:32 1995 *************** *** 384,389 **** --- 384,390 ---- (define-key gnus-topic-mode-map "=" 'gnus-topic-select-group) (define-key gnus-topic-mode-map "\r" 'gnus-topic-select-group) (define-key gnus-topic-mode-map " " 'gnus-topic-read-group) + (define-key gnus-topic-mode-map gnus-mouse-2 'gnus-mouse-pick-topic) (define-key gnus-topic-mode-map "\C-k" 'gnus-topic-kill-group) (define-key gnus-topic-mode-map "\C-y" 'gnus-topic-yank-group) (define-key gnus-topic-mode-map "\M-g" 'gnus-topic-get-new-news-this-topic)