From 938ca345589a59c4ba3a816a8619dfd694db4089 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Tue, 13 Mar 2012 12:19:39 +0000 Subject: [PATCH] Add missing word to org-contacts y-or-n-p question * org-contacts.el (org-contacts-check-mail-address): Add missing word to y-or-n-p question. --- org-contacts.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-contacts.el b/org-contacts.el index f238483..bdd9996 100644 --- a/org-contacts.el +++ b/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 ()