diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:37:18 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:37:18 +0000 |
commit | 8ab2275f108d8c1988f504813e294d37b64c2715 (patch) | |
tree | 7aebc0c3ca50c72dcbadce8d1709cb35ddec1d9e /lisp/mh-e | |
parent | 52ebd91d1bbeedf4cfdd572c0b8a447c07c33cf7 (diff) | |
download | emacs-8ab2275f108d8c1988f504813e294d37b64c2715.tar.gz |
(mh-secure-message): Follow error conventions.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/mh-mime.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index dcd8f67a0f3..9bc8f7d74a9 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el @@ -597,7 +597,7 @@ IDENTITY is optionally the default-user-id to use." (let ((valid-methods (list "pgpmime" "pgp" "smime")) (valid-modes (list "sign" "encrypt" "signencrypt" "none"))) (if (not (member method valid-methods)) - (error (format "Sorry. METHOD \"%s\" is invalid." method))) + (error (format "Sorry. METHOD \"%s\" is invalid" method))) (if (not (member mode valid-modes)) (error (format "Sorry. MODE \"%s\" is invalid" mode))) (mml-unsecure-message) |