(mime-show-echo-buffer): Bind `buffer-read-only' to nil, while insert
authorkeiichi <keiichi>
Mon, 31 May 1999 00:31:30 +0000 (00:31 +0000)
committerkeiichi <keiichi>
Mon, 31 May 1999 00:31:30 +0000 (00:31 +0000)
messages.

mime-play.el

index 28dcedb..70fb849 100644 (file)
@@ -417,8 +417,9 @@ this function is called."
        ))
     (goto-char (setq start (point-max)))
     (if forms
-       (insert (apply (function format) forms))
-      )
+       (let ((buffer-read-only nil))
+         (insert (apply (function format) forms))
+         ))
     (prog1
        (list win start (point))
       (select-window the-win)