From 87f9da5ad9f12399be631ecd6a3ad389fb4fd325 Mon Sep 17 00:00:00 2001 From: keiichi Date: Mon, 31 May 1999 00:31:30 +0000 Subject: [PATCH] (mime-show-echo-buffer): Bind `buffer-read-only' to nil, while insert messages. --- mime-play.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mime-play.el b/mime-play.el index 28dcedb..70fb849 100644 --- a/mime-play.el +++ b/mime-play.el @@ -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) -- 1.7.10.4