# HG changeset patch # User Juanma Barranquero # Date 1118934185 0 # Node ID 6e853e3f900e9f38cc43078a28964aeb7f343a09 # Parent 0be1bcd6830a0f311f9f6531c3ab1fd8b46251f6 (mh-send-sub): Don't use `format' on `error' arguments. diff -r 0be1bcd6830a -r 6e853e3f900e lisp/mh-e/mh-comp.el --- a/lisp/mh-e/mh-comp.el Thu Jun 16 14:58:23 2005 +0000 +++ b/lisp/mh-e/mh-comp.el Thu Jun 16 15:03:05 2005 +0000 @@ -623,8 +623,8 @@ ))) 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))