From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/3837 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: C-u space Date: Sat, 4 Nov 1995 19:12:41 +0100 Message-ID: <199511041812.TAA04743@ssv4.dina.kvl.dk> References: <9511041646.AA06899@gemini.ryerson.ca> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035144664 27503 80.91.224.250 (20 Oct 2002 20:11:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:11:04 +0000 (UTC) Cc: ding@ifi.uio.no X-From-Line: ding-request@ifi.uio.no Sat Nov 4 10:47:59 1995 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 KAA15714 for ; Sat, 4 Nov 1995 10:47:50 -0800 Original-Received: from elc1.dina.kvl.dk (elc1.dina.kvl.dk [130.225.40.228]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sat, 4 Nov 1995 19:13:26 +0100 Original-Received: from ssv4.dina.kvl.dk (ssv4.dina.kvl.dk [130.225.40.223]) by elc1.dina.kvl.dk (8.6.12/8.6.4) with ESMTP id TAA06712; Sat, 4 Nov 1995 19:11:26 +0100 Original-Received: (abraham@localhost) by ssv4.dina.kvl.dk (8.6.12/8.6.4) id TAA04743; Sat, 4 Nov 1995 19:12:41 +0100 Original-To: elf@mailhost.ee.ryerson.ca (Luis Fernandes) In-reply-to: elf@mailhost.ee.ryerson.ca's message of Sat, 4 Nov 1995 11:46:38 -0500 Original-Lines: 49 Xref: main.gmane.org gmane.emacs.gnus.general:3837 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:3837 >>>>> "LF" == Luis Fernandes writes: LF> I would like to suggest placing "C-u space" in Gnus Group menu. Here is a patch that does this. Sat Nov 4 19:07:31 1995 Per Abrahamsen * gnus-vis.el (gnus-group-make-menu-bar): Add key description for the "See old articles" entry and made it run gnus-group-select-group with an argument. * gnus.el (gnus-group-select-group-all): Deleted. *** gnus-vis.el~ Fri Nov 3 07:33:12 1995 --- gnus-vis.el Sat Nov 4 19:06:50 1995 *************** *** 281,287 **** '("Group" ["Read" gnus-group-read-group t] ["Select" gnus-group-select-group t] ! ["See old articles" gnus-group-select-group-all t] ["Catch up" gnus-group-catchup-current t] ["Catch up all articles" gnus-group-catchup-current-all t] ["Check for new articles" gnus-group-get-new-news-this-group t] --- 281,287 ---- '("Group" ["Read" gnus-group-read-group t] ["Select" gnus-group-select-group t] ! ["See old articles" (gnus-group-select-group 'all) :keys "C-u SPC" ] ["Catch up" gnus-group-catchup-current t] ["Catch up all articles" gnus-group-catchup-current-all t] ["Check for new articles" gnus-group-get-new-news-this-group t] *** gnus.el~ Fri Nov 3 07:33:13 1995 --- gnus.el Sat Nov 4 19:10:11 1995 *************** *** 3949,3959 **** (interactive "P") (gnus-group-read-group all t)) - (defun gnus-group-select-group-all () - "Select the current group and display all articles in it." - (interactive) - (gnus-group-select-group 'all)) - ;; Enter a group that is not in the group buffer. Non-nil is returned ;; if selection was successful. (defun gnus-group-read-ephemeral-group --- 3949,3954 ----