From: Juanma Barranquero Date: Thu, 16 Jun 2005 15:03:05 +0000 (+0000) Subject: (mh-send-sub): Don't use `format' on `error' arguments. X-Git-Tag: emacs-pretest-22.0.90~8886 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e9c2f101c7d558d4c855f505416f4d7ae2d2a840;p=emacs.git (mh-send-sub): Don't use `format' on `error' arguments. --- 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))