X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=lisp%2Fyenc.el;h=9a5974f2091fd7383564e030871d9fafbee7cf6b;hb=46c22a7cc913e94deb9ef826887fff586b32df5b;hp=b0f7b4115b23b81320ddb1bfeb77218dd37a2ee5;hpb=9a8731d6dea8021a10dec1b42f382609336a9aa9;p=gnus diff --git a/lisp/yenc.el b/lisp/yenc.el index b0f7b4115..9a5974f20 100644 --- a/lisp/yenc.el +++ b/lisp/yenc.el @@ -1,6 +1,6 @@ ;;; yenc.el --- elisp native yenc decoder -;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 2002-2013 Free Software Foundation, Inc. ;; Author: Jesper Harder ;; Keywords: yenc news @@ -89,8 +89,9 @@ (when (re-search-forward "^=yend.*$" end t) (setq last (match-beginning 0)) (setq footer-alist (yenc-parse-line (match-string 0))) - (letf (((default-value 'enable-multibyte-characters) nil)) - (setq work-buffer (generate-new-buffer " *yenc-work*"))) + (setq work-buffer (generate-new-buffer " *yenc-work*")) + (unless (featurep 'xemacs) + (with-current-buffer work-buffer (set-buffer-multibyte nil))) (while (< first last) (setq char (char-after first)) (cond ((or (eq char ?\r) @@ -135,5 +136,4 @@ (provide 'yenc) -;; arch-tag: 74df17e8-6fa8-4071-9f7d-54d548d79d9a ;;; yenc.el ends here