From: Juanma Barranquero Date: Tue, 14 Jun 2005 15:37:18 +0000 (+0000) Subject: (mh-secure-message): Follow error conventions. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/8ab2275f108d8c1988f504813e294d37b64c2715 (mh-secure-message): Follow error conventions. --- diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index dcd8f67a0f..9bc8f7d74a 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)