diff options
author | Dave Love <fx@gnu.org> | 2000-11-29 22:22:28 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-29 22:22:28 +0000 |
commit | 372edc63d4b33f9d214656688ece7677f21bc6e0 (patch) | |
tree | f97210fde424cbce0b9a48471e5702a05de9576a /lisp/gnus/qp.el | |
parent | c6e007a60c931b423d5dd63debb83395d70f8459 (diff) | |
download | emacs-372edc63d4b33f9d214656688ece7677f21bc6e0.tar.gz |
(quoted-printable-decode-region): Use error, not message
to report malformed text (like base64). Amend message.
Diffstat (limited to 'lisp/gnus/qp.el')
-rw-r--r-- | lisp/gnus/qp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el index c1ceac88cef..cb0b4bb4a7e 100644 --- a/lisp/gnus/qp.el +++ b/lisp/gnus/qp.el @@ -66,7 +66,7 @@ coding-system." (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))))) |