aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/gnus')
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/qp.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 302259dfae7..010c75327c8 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12002-08-21 Kenichi Handa <handa@etl.go.jp>
2
3 * qp.el (quoted-printable-decode-region): Insert bytes by
4 `insert-byte'.
5
12002-08-18 Dave Love <fx@gnu.org> 62002-08-18 Dave Love <fx@gnu.org>
2 7
3 * rfc2047.el (rfc2047-encode): Fix last change. 8 * rfc2047.el (rfc2047-encode): Fix last change.
diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el
index 2e349e88799..b9761bedbdd 100644
--- a/lisp/gnus/qp.el
+++ b/lisp/gnus/qp.el
@@ -63,7 +63,7 @@ coding-system."
63 (let ((byte (string-to-int (buffer-substring (1+ (point)) 63 (let ((byte (string-to-int (buffer-substring (1+ (point))
64 (+ 3 (point))) 64 (+ 3 (point)))
65 16))) 65 16)))
66 (insert-byte 1 byte) 66 (insert-byte byte 1)
67 (delete-char 3) 67 (delete-char 3)
68 (unless (eq byte ?=) 68 (unless (eq byte ?=)
69 (backward-char)))) 69 (backward-char))))