mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-01 11:14:55 +00:00
(quoted-printable-decode-region): Use error, not message
to report malformed text (like base64). Amend message.
This commit is contained in:
parent
c6e007a60c
commit
372edc63d4
@ -1,3 +1,8 @@
|
||||
2000-11-29 Dave Love <fx@gnu.org>
|
||||
|
||||
* qp.el (quoted-printable-decode-region): Use error, not message
|
||||
to report malformed text (like base64). Amend message.
|
||||
|
||||
2000-11-29 Miles Bader <miles@gnu.org>
|
||||
|
||||
* message.el (message-header-lines): Fontify tag.
|
||||
|
@ -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)))))
|
||||
|
Loading…
Reference in New Issue
Block a user