From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glyn Millington Newsgroups: gmane.emacs.help Subject: Re: Basic emacs lisp question Date: Wed, 10 Sep 2014 07:00:31 +0100 Organization: Utterly lacking Message-ID: <87lhpsc8w0.fsf@nowhere.org> References: <87egvkvb6o.fsf@gmail.com> <8761gwy2ue.fsf@debian.uxu> <874mwgv93m.fsf@gmail.com> <871trky15l.fsf@debian.uxu> <87y4tsts4t.fsf@gmail.com> <87wq9cwhmq.fsf@debian.uxu> <871trk9snl.fsf@gmail.com> Reply-To: glyn.millington@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1410330993 799 80.91.229.3 (10 Sep 2014 06:36:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 10 Sep 2014 06:36:33 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 10 08:36:26 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XRbVV-0005KS-O6 for geh-help-gnu-emacs@m.gmane.org; Wed, 10 Sep 2014 08:35:57 +0200 Original-Received: from localhost ([::1]:53773 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRbVV-00023e-B0 for geh-help-gnu-emacs@m.gmane.org; Wed, 10 Sep 2014 02:35:57 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40575) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRbVD-000238-43 for help-gnu-emacs@gnu.org; Wed, 10 Sep 2014 02:35:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRbV7-00059o-5R for help-gnu-emacs@gnu.org; Wed, 10 Sep 2014 02:35:39 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:49996) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRbV6-00059k-U7 for help-gnu-emacs@gnu.org; Wed, 10 Sep 2014 02:35:33 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XRbV1-00050X-7j for help-gnu-emacs@gnu.org; Wed, 10 Sep 2014 08:35:27 +0200 Original-Received: from cust25-dsl91-135-3.idnet.net ([91.135.3.25]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Sep 2014 08:35:27 +0200 Original-Received: from glyn.millington by cust25-dsl91-135-3.idnet.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Sep 2014 08:35:27 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 34 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cust25-dsl91-135-3.idnet.net X-Liturgical-Date: Weekday: Wednesday of the Twenty-third Week of Ordinary Time, A.D. 2014 X-Shakespeare: "I understand a fury in your words, But not the words." -- Othello, IV.2.32 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:03kOMU6XSb1I+1WdTVvhwvHjjw4= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:99762 Archived-At: Ken writes: > Emanuel Berg writes: > >> PS. Note how you reply to my posts - reply to the >> list/newsgroup, not to my e-mail. DS. > > Sorry about that. I use gnus and I haven't trained my fingers to use F > rather than R yet. > > Ken > > -- > The difference between a Miracle and a Fact is exactly the difference > between a mermaid and a seal. > -- Mark Twain Hi Ken, Bung this snippet into your .gnus file. Gnus will then ask you if you REALLY want to send an email when you are in a news group. ;; prompt for mail replies to newsgroups!!!!! (defadvice gnus-summary-reply (around reply-in-news activate) (interactive) (when (or (not (gnus-news-group-p gnus-newsgroup-name)) (y-or-n-p "REALLY reply with a personal mail? ")) ad-do-it)) atb Glyn