]> git.eshelyaron.com Git - emacs.git/commitdiff
(mh-identity-field-handler): Don't use `format' on `error' arguments.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 15:04:00 +0000 (15:04 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 15:04:00 +0000 (15:04 +0000)
lisp/mh-e/mh-identity.el

index dc076751865f6c50b06eb427737e33dc7ab5f281..b0a1430928bf175964da731e325135fcb7ca6000 100644 (file)
@@ -126,7 +126,7 @@ The field name is downcased. If the FIELD begins with the character
 header field."
   (or (cdr (assoc (downcase field) mh-identity-handlers))
       (and (eq (aref field 0) ?:)
-           (error (format "Field %s - unknown mh-identity-handler" field)))
+           (error "Field %s - unknown mh-identity-handler" field))
       (cdr (assoc ":default" mh-identity-handlers))
       'mh-identity-handler-default))