Mercurial > emacs
changeset 14425:8109feeaf627
(mh-read-seq): Fix error format string.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 29 Jan 1996 23:16:57 +0000 |
parents | b6a423b26c69 |
children | 9f18c1b097ce |
files | lisp/mail/mh-seq.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/mh-seq.el Mon Jan 29 23:16:36 1996 +0000 +++ b/lisp/mail/mh-seq.el Mon Jan 29 23:16:57 1996 +0000 @@ -26,7 +26,7 @@ ;;; Change Log: -;; $Id: mh-seq.el,v 1.4 1995/11/03 02:30:17 kwzh Exp erik $ +;; $Id: mh-seq.el,v 1.5 1996/01/14 07:34:30 erik Exp kwzh $ ;;; Code: @@ -169,7 +169,7 @@ (t (intern input)))) (msgs (mh-seq-to-msgs seq))) (if (and (null msgs) not-empty) - (error (format "No messages in sequence `%s'" seq))) + (error "No messages in sequence `%s'" seq)) seq))