Sync up with the latest semi-1_13.
authoryamaoka <yamaoka>
Mon, 31 May 1999 00:44:46 +0000 (00:44 +0000)
committeryamaoka <yamaoka>
Mon, 31 May 1999 00:44:46 +0000 (00:44 +0000)
ChangeLog
mime-play.el

index 8cfccac..185d327 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-05-31  Keiichi Suzuki  <keiichi@nanap.org>
+
+       * mime-play.el (mime-show-echo-buffer): Bind `buffer-read-only' to
+       nil, while insert messages.
+
 1999-05-28  MORIOKA Tomohiko  <tomo@m17n.org>
 
        * README.en (Required environment): Require APEL 9.20.
index bb5ee15..af3d851 100644 (file)
@@ -407,8 +407,9 @@ window.")
     (select-window win)
     (goto-char (point-max))
     (if forms
-       (insert (apply (function format) forms))
-      )
+       (let ((buffer-read-only nil))
+         (insert (apply (function format) forms))
+         ))
     (select-window the-win)
     ))