changeset 34025:07dcbc7e702f

(quoted-printable-decode-region): Use error, not message to report malformed text (like base64). Amend message.
author Dave Love <fx@gnu.org>
date Wed, 29 Nov 2000 22:21:38 +0000
parents b298f10891e5
children f77bc000c382
files lisp/gnus/qp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/qp.el	Wed Nov 29 20:39:28 2000 +0000
+++ b/lisp/gnus/qp.el	Wed Nov 29 22:21:38 2000 +0000
@@ -66,7 +66,7 @@
 		   (unless (eq byte ?=)
 		     (backward-char))))
 		(t
-		 (message "Malformed MIME quoted-printable message")
+		 (error "Malformed quoted-printable text")
 		 (forward-char)))))
       (if coding-system
 	  (mm-decode-coding-region (point-min) (point-max) coding-system)))))