From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/59863 Path: main.gmane.org!not-for-mail From: =?utf-8?Q?Arne_J=C3=B8rgensen?= Newsgroups: gmane.emacs.gnus.general Subject: Re: Patch: Allow nnrss to be verbose Date: Mon, 21 Feb 2005 14:51:26 +0100 Organization: Arne Joergensen -- http://arnested.dk/ Message-ID: <87d5uuja1t.fsf@seamus.arnested.dk> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1108993809 30284 80.91.229.2 (21 Feb 2005 13:50:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 21 Feb 2005 13:50:09 +0000 (UTC) Original-X-From: ding-owner+M8404@lists.math.uh.edu Mon Feb 21 14:50:08 2005 Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by ciao.gmane.org with esmtp (Exim 4.43) id 1D3Dwn-0004iK-On for ding-account@gmane.org; Mon, 21 Feb 2005 14:50:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1D3Dys-0004u3-00; Mon, 21 Feb 2005 07:52:10 -0600 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1D3Dyo-0004ty-00 for ding@lists.math.uh.edu; Mon, 21 Feb 2005 07:52:06 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1D3Dyl-0005fM-04 for ding@lists.math.uh.edu; Mon, 21 Feb 2005 07:52:03 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1D3Dyk-0004ze-00 for ; Mon, 21 Feb 2005 14:52:02 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1D3Duv-0004N9-VE for ding@gnus.org; Mon, 21 Feb 2005 14:48:05 +0100 Original-Received: from 213.237.94.152 ([213.237.94.152]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Feb 2005 14:48:05 +0100 Original-Received: from arne by 213.237.94.152 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Feb 2005 14:48:05 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 52 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 213.237.94.152 X-Face: 5t,7/Y$&<1A_t.$vC2{pWZ{m@3_06;kcm]no{hgEL/}Uz(>XV6cl4}xO\v?-h3%>znNaZtq `~rf,GY1T%r=a.zH`hOb(-]'x)nI088Z&|e;V^h;/TShou User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:YFz6OEOYeqEYNnGkYUF2MeWNago= X-Spam-Score: -4.9 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu X-MailScanner-From: ding-owner+m8404@lists.math.uh.edu X-MailScanner-To: ding-account@gmane.org Xref: main.gmane.org gmane.emacs.gnus.general:59863 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:59863 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Mark Plaksin writes: > This patch adds nnrss-verbose. When t, nnrss writes to the minibuffer when > it requests a feed. Nice, but I think changing it to Requesting nnrss:Foo... Requesting nnrss:Foo...done would be more emacsish. Patch attached. Kind regards, -- Arne Jørgensen --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=nnrss.patch Index: lisp/nnrss.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/nnrss.el,v retrieving revision 7.25 diff -u -p -r7.25 nnrss.el --- lisp/nnrss.el 20 Feb 2005 11:42:56 -0000 7.25 +++ lisp/nnrss.el 21 Feb 2005 13:49:10 -0000 @@ -149,7 +149,7 @@ ARTICLE is the article number of the cur (deffoo nnrss-request-group (group &optional server dont-check) (if nnrss-verbose - (message (concat "nnrss requesting " group "..."))) + (message (concat "Requesting nnrss:" group "..."))) (setq group (nnrss-decode-group-name group)) (nnrss-possibly-change-group group server) (prog1 @@ -162,7 +162,7 @@ ARTICLE is the article number of the cur (prin1-to-string group) t)) (when nnrss-verbose - (message (concat "nnrss done with " group "."))))) + (message (concat "Requesting nnrss:" group "...done"))))) (deffoo nnrss-close-group (group &optional server) t) --=-=-=--