comparison lisp/gnus/rfc2231.el @ 69644:26ee9321c6d7

(rfc2231-encode-string): Use mm-disable-multibyte instead of set-buffer-multibyte.
author Kenichi Handa <handa@m17n.org>
date Thu, 23 Mar 2006 11:30:07 +0000
parents 69cdb1e84c38
children cac840c3298d e6bf73e43cf4
comparison
equal deleted inserted replaced
69643:c775cf3fd17d 69644:26ee9321c6d7
266 ((not (memq (following-char) ascii)) 266 ((not (memq (following-char) ascii))
267 (setq charsetp t))) 267 (setq charsetp t)))
268 (forward-char 1)) 268 (forward-char 1))
269 (when charsetp 269 (when charsetp
270 (setq charset (mm-encode-body))) 270 (setq charset (mm-encode-body)))
271 (set-buffer-multibyte nil) 271 (mm-disable-multibyte)
272 (cond 272 (cond
273 ((or encodep charsetp 273 ((or encodep charsetp
274 (progn 274 (progn
275 (end-of-line) 275 (end-of-line)
276 (> (current-column) (if spacep (- limit 2) limit)))) 276 (> (current-column) (if spacep (- limit 2) limit))))