[mew-int 2878] Small typo fix
Michael Ernst <[email protected]> Fri, 04 Jun 2010 13:20:09 -0700 (PDT)
| Newsgroups | gmane.mail.mew.general |
|---|---|
| Message-ID | <[email protected]> |
The attached patch fixes grammar typo that appears thrice in the Mew source code. -Michael Ernst
mew-whose.diff
(text/x-patch, 1.4 KB)
diff --git a/mew-pgp.el b/mew-pgp.el
index 1f01ec9..ee173cf 100644
--- a/mew-pgp.el
+++ b/mew-pgp.el
@@ -707,7 +707,7 @@ Set 1 if 5. Set 2 if 6. Set 3 if GNUPG.")
(if (mew-use-old-pgp (mew-tinfo-get-case))
(setq func 'mew-old-pgp-encode))
(if (and ask-signer (string-match "signature" (symbol-name type)))
- (funcall func type (car (mew-input-address "Who's key?: ")))
+ (funcall func type (car (mew-input-address "Whose key?: ")))
(funcall func type)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1021,7 +1021,7 @@ Set 1 if 5. Set 2 if 6. Set 3 if GNUPG.")
(message "Cannot make a file for pgp key, sorry")
(setq file (file-name-nondirectory filepath))
(setq user (car (mew-input-address
- "Who's key? (%s): " (mew-get-my-address))))
+ "Whose key? (%s): " (mew-get-my-address))))
(with-temp-buffer
(apply 'mew-call-process-lang
(mew-pgp-get mew-prog-pgpk)
diff --git a/mew-smime.el b/mew-smime.el
index 99ce24c..c5d4d40 100644
--- a/mew-smime.el
+++ b/mew-smime.el
@@ -235,7 +235,7 @@
(if (null mew-smime-ver)
(message "%s does not exist" mew-prog-smime)
(if (and ask-signer (string-match "signature" (symbol-name type)))
- (mew-draft-make-message type (car (mew-input-address "Who's key?: ")))
+ (mew-draft-make-message type (car (mew-input-address "Whose key?: ")))
(mew-draft-make-message type))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;