diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 15:03:05 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-16 15:03:05 +0000 |
commit | e9c2f101c7d558d4c855f505416f4d7ae2d2a840 (patch) | |
tree | c71438f9ced558588edc60c6fc3cecd66855a98d /lisp/mh-e/mh-comp.el | |
parent | d7cd37107241d133b10ed3908d1ca64e3ebfc8a1 (diff) | |
download | emacs-e9c2f101c7d558d4c855f505416f4d7ae2d2a840.tar.gz |
(mh-send-sub): Don't use `format' on `error' arguments.
Diffstat (limited to 'lisp/mh-e/mh-comp.el')
-rw-r--r-- | lisp/mh-e/mh-comp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mh-e/mh-comp.el b/lisp/mh-e/mh-comp.el index 82d0f5b7fd7..a466c4af7ba 100644 --- a/lisp/mh-e/mh-comp.el +++ b/lisp/mh-e/mh-comp.el @@ -623,8 +623,8 @@ CONFIG is the window configuration before sending mail." ))) components) (t - (error (format "Can't find components file \"%s\"" - components))))) + (error "Can't find components file \"%s\"" + components)))) nil))) (mh-insert-fields "To:" to "Subject:" subject "Cc:" cc) (goto-char (point-max)) |