From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tassilo Horn Subject: [PATCH] Add missing word to org-contacts y-or-n-p question. Date: Tue, 13 Mar 2012 08:19:39 +0100 Message-ID: <87k42pc6ic.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:46452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7M1l-0000sW-Dc for emacs-orgmode@gnu.org; Tue, 13 Mar 2012 03:20:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S7M1c-0003E0-IP for emacs-orgmode@gnu.org; Tue, 13 Mar 2012 03:20:12 -0400 Received: from plane.gmane.org ([80.91.229.3]:45031) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7M1c-0003Bc-Cl for emacs-orgmode@gnu.org; Tue, 13 Mar 2012 03:20:04 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1S7M1Z-0000ZS-FJ for emacs-orgmode@gnu.org; Tue, 13 Mar 2012 08:20:01 +0100 Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Mar 2012 08:20:01 +0100 Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Mar 2012 08:20:01 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >From 6254305becaaa712f6f0936263a09d9ed974e51b Mon Sep 17 00:00:00 2001 User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.0.94 (gnu/linux) Cancel-Lock: sha1:/pUqi5NalGwuBic1R2H+VziOGlM= Before it was Do you want to this address to %s? now it is Do you want add to this address to %s? --- contrib/lisp/org-contacts.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el index f238483..bdd9996 100644 --- a/contrib/lisp/org-contacts.el +++ b/contrib/lisp/org-contacts.el @@ -388,7 +388,7 @@ This function should be called from `gnus-article-prepare-hook'." (let ((mails (org-entry-get (point) org-contacts-email-property))) (unless (member mail (split-string mails)) (when (yes-or-no-p - (format "Do you want to this address to %s?" (org-get-heading t))) + (format "Do you want to add this address to %s?" (org-get-heading t))) (org-set-property org-contacts-email-property (concat mails " " mail)))))) (defun org-contacts-gnus-check-mail-address () -- 1.7.8.5