aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus/yenc.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-09-04 02:47:26 +0000
committerGlenn Morris <[email protected]>2009-09-04 02:47:26 +0000
commit63220e377a188b3927d1265d9902235aab5a4ef6 (patch)
treeaef89d832306c67d7b95d39550e6b5dea917e25d /lisp/gnus/yenc.el
parent5f3710a27108d04f6051805149cc961cc6068bf9 (diff)
Use default-value rather than default-enable-multibyte-characters.
Diffstat (limited to 'lisp/gnus/yenc.el')
-rw-r--r--lisp/gnus/yenc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/yenc.el b/lisp/gnus/yenc.el
index 51d80f8667..e352b8099d 100644
--- a/lisp/gnus/yenc.el
+++ b/lisp/gnus/yenc.el
@@ -89,8 +89,8 @@
(when (re-search-forward "^=yend.*$" end t)
(setq last (match-beginning 0))
(setq footer-alist (yenc-parse-line (match-string 0)))
- (let (default-enable-multibyte-characters)
- (setq work-buffer (generate-new-buffer " *yenc-work*")))
+ (letf (((default-value 'enable-multibyte-characters) nil))
+ (setq work-buffer (generate-new-buffer " *yenc-work*")))
(while (< first last)
(setq char (char-after first))
(cond ((or (eq char ?\r)