diff options
| author | Kenichi Handa | 2002-08-21 01:32:03 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-08-21 01:32:03 +0000 |
| commit | 927d47132eff0cd7b105f6e588c57d9e49b63387 (patch) | |
| tree | 7664da578a0f22ccb272cf4d24e1423cb22d356e | |
| parent | f63e65a57210c1c0245a298373b8379fd35d6338 (diff) | |
| download | emacs-927d47132eff0cd7b105f6e588c57d9e49b63387.tar.gz emacs-927d47132eff0cd7b105f6e588c57d9e49b63387.zip | |
(quoted-printable-decode-region): Fix previous change.
| -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 33cdb6e1a7f..2e349e88799 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 byte) | 66 | (insert-byte 1 byte) |
| 67 | (delete-char 3) | 67 | (delete-char 3) |
| 68 | (unless (eq byte ?=) | 68 | (unless (eq byte ?=) |
| 69 | (backward-char)))) | 69 | (backward-char)))) |