From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/3847 Path: main.gmane.org!not-for-mail From: Sudish Joseph Newsgroups: gmane.emacs.gnus.general Subject: Re: Suggestion: support "a" from the group buffer. [patch] Date: 04 Nov 1995 19:28:28 -0500 Organization: The Ohio State University Dept. of Computer and Info. Science Sender: joseph@cis.ohio-state.edu Message-ID: References: <199511050011.QAA08604@steffi.accessone.com> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035144671 27549 80.91.224.250 (20 Oct 2002 20:11:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:11:11 +0000 (UTC) Cc: Lars Magne Ingebrigtsen X-From-Line: ding-request@ifi.uio.no Sat Nov 4 17:02: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 RAA17912 for ; Sat, 4 Nov 1995 17:02:16 -0800 Original-Received: from news.cis.ohio-state.edu (news.cis.ohio-state.edu [164.107.8.50]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id ; Sun, 5 Nov 1995 01:28:33 +0100 Original-Received: from crete.cis.ohio-state.edu (crete.cis.ohio-state.edu [164.107.138.7]) by news.cis.ohio-state.edu (8.6.8.1/8.6.4) with ESMTP id TAA07182; Sat, 4 Nov 1995 19:28:31 -0500 Original-Received: (joseph@localhost) by crete.cis.ohio-state.edu (8.6.7/8.6.4) id TAA19382; Sat, 4 Nov 1995 19:28:30 -0500 Original-To: The Ding List X-Mailer: VM 5.72 (beta), GNU Emacs 19.28.1 In-Reply-To: Robert Nicholson's message of Sat, 4 Nov 1995 16:11:38 -0800 (PST) Original-Lines: 42 Xref: main.gmane.org gmane.emacs.gnus.general:3847 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:3847 Robert Nicholson writes: > If I a from the group buffer I'm saying post the group the cursor is currently > on. If I need to post to a group not visible in the group buffer I can either > "L" to show all potential groups or just gnus-post-news and be prompted for > the group. Here you go, it's a simple hack. -Sudish *** gnus/lisp/ChangeLog Sun Oct 29 13:54:38 1995 --- lisp/ChangeLog Sat Nov 4 19:26:23 1995 *************** *** 0 **** --- 1,6 ---- + Sat Nov 4 19:24:57 1995 sudish joseph + + * gnus-msg.el (gnus-group-post-news): Use the group under point as + the default when composing the post buffer. (This means that + `a' over a mail group will get you a *mail* buffer.) + diff -crx ChangeLog gnus/lisp/gnus-msg.el lisp/gnus-msg.el *** gnus/lisp/gnus-msg.el Sun Oct 29 13:54:30 1995 --- lisp/gnus-msg.el Sat Nov 4 19:24:44 1995 *************** *** 330,336 **** "Post an article." (interactive) (let ((gnus-newsgroup-name nil)) ! (gnus-post-news 'post nil nil gnus-article-buffer))) (defun gnus-summary-post-news () "Post an article." --- 330,336 ---- "Post an article." (interactive) (let ((gnus-newsgroup-name nil)) ! (gnus-post-news 'post (gnus-group-group-name) nil gnus-article-buffer))) (defun gnus-summary-post-news () "Post an article." diff -crx ChangeLog gnus/lisp/gnus-vis.el lisp/gnus-vis.el