diff options
| author | Karl Heuer | 1996-01-29 23:16:57 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-29 23:16:57 +0000 |
| commit | e84d5560a2bbd10b10b72817985e5f3d666194ca (patch) | |
| tree | ecac439aae53c6a433f0af0cc8d370a089c48cf4 | |
| parent | ce35dad9dd4809e514dfe01bab36a5de76ab1eff (diff) | |
| download | emacs-e84d5560a2bbd10b10b72817985e5f3d666194ca.tar.gz emacs-e84d5560a2bbd10b10b72817985e5f3d666194ca.zip | |
(mh-read-seq): Fix error format string.
| -rw-r--r-- | lisp/mail/mh-seq.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/mh-seq.el b/lisp/mail/mh-seq.el index 1c6875eeab5..59db6ee8f19 100644 --- a/lisp/mail/mh-seq.el +++ b/lisp/mail/mh-seq.el | |||
| @@ -26,7 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | ;;; Change Log: | 27 | ;;; Change Log: |
| 28 | 28 | ||
| 29 | ;; $Id: mh-seq.el,v 1.4 1995/11/03 02:30:17 kwzh Exp erik $ | 29 | ;; $Id: mh-seq.el,v 1.5 1996/01/14 07:34:30 erik Exp kwzh $ |
| 30 | 30 | ||
| 31 | ;;; Code: | 31 | ;;; Code: |
| 32 | 32 | ||
| @@ -169,7 +169,7 @@ If optional prefix argument provided, then prompt for the message sequence." | |||
| 169 | (t (intern input)))) | 169 | (t (intern input)))) |
| 170 | (msgs (mh-seq-to-msgs seq))) | 170 | (msgs (mh-seq-to-msgs seq))) |
| 171 | (if (and (null msgs) not-empty) | 171 | (if (and (null msgs) not-empty) |
| 172 | (error (format "No messages in sequence `%s'" seq))) | 172 | (error "No messages in sequence `%s'" seq)) |
| 173 | seq)) | 173 | seq)) |
| 174 | 174 | ||
| 175 | 175 | ||