diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 15:04:00 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 15:04:00 +0000 |
commit | a2733633eaca673449c149b1ca99b32d7d40f94f (patch) | |
tree | ffeeb0a5010799d5fe60214795c1a5f9df6f925e /lisp/mh-e/mh-identity.el | |
parent | e9c2f101c7d558d4c855f505416f4d7ae2d2a840 (diff) | |
download | emacs-a2733633eaca673449c149b1ca99b32d7d40f94f.tar.gz |
(mh-identity-field-handler): Don't use `format' on `error' arguments.
Diffstat (limited to 'lisp/mh-e/mh-identity.el')
-rw-r--r-- | lisp/mh-e/mh-identity.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-identity.el b/lisp/mh-e/mh-identity.el index dc076751865..b0a1430928b 100644 --- a/lisp/mh-e/mh-identity.el +++ b/lisp/mh-e/mh-identity.el @@ -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)) |