mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 06:31:34 -08:00
*** empty log message ***
This commit is contained in:
parent
5a38b8c5ed
commit
da13f28e2c
3 changed files with 12 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2002-08-21 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* qp.el (quoted-printable-decode-region): Insert bytes by
|
||||
`insert-byte'.
|
||||
|
||||
2002-08-18 Dave Love <fx@gnu.org>
|
||||
|
||||
* rfc2047.el (rfc2047-encode): Fix last change.
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ coding-system."
|
|||
(let ((byte (string-to-int (buffer-substring (1+ (point))
|
||||
(+ 3 (point)))
|
||||
16)))
|
||||
(insert-byte 1 byte)
|
||||
(insert-byte byte 1)
|
||||
(delete-char 3)
|
||||
(unless (eq byte ?=)
|
||||
(backward-char))))
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
2002-08-21 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* character.h (BYTE8_STRING): New macro.
|
||||
|
||||
* fns.c (base64_decode_1): Insert eight-bit chars correctly.
|
||||
|
||||
2002-08-20 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* xdisp.c (get_next_display_element): Don't display unibyte 8-bit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue