Synch to No Gnus 200506091113.
authoryamaoka <yamaoka>
Thu, 9 Jun 2005 11:13:44 +0000 (11:13 +0000)
committeryamaoka <yamaoka>
Thu, 9 Jun 2005 11:13:44 +0000 (11:13 +0000)
lisp/ChangeLog
lisp/mm-view.el

index e386a36..d0e188c 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
+       executing enriched-decode.
+
 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
index f3e2f79..0d74f22 100644 (file)
       (when (or (equal type "enriched")
                (equal type "richtext"))
        (ignore-errors
-         (enriched-decode (point-min) (point-max))))
+         ;; Turn off `adaptive-fill-mode' that may cause an error
+         ;; as the case may be.
+         (let ((adaptive-fill-mode nil))
+           (enriched-decode (point-min) (point-max)))))
       (mm-handle-set-undisplayer
        handle
        `(lambda ()