projects
/
elisp
/
semi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aef373c
)
(mime-show-echo-buffer): Bind `buffer-read-only' to nil, while insert
author
keiichi
<keiichi>
Mon, 31 May 1999 00:33:21 +0000
(
00:33
+0000)
committer
keiichi
<keiichi>
Mon, 31 May 1999 00:33:21 +0000
(
00:33
+0000)
messages.
mime-play.el
patch
|
blob
|
history
diff --git
a/mime-play.el
b/mime-play.el
index
bb5ee15
..
af3d851
100644
(file)
--- a/
mime-play.el
+++ b/
mime-play.el
@@
-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)
))