projects
/
elisp
/
apel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4167387
)
(write-region-as-binary): fixed.
author
morioka
<morioka>
Thu, 14 May 1998 07:10:11 +0000
(07:10 +0000)
committer
morioka
<morioka>
Thu, 14 May 1998 07:10:11 +0000
(07:10 +0000)
emu-20.el
patch
|
blob
|
history
diff --git
a/emu-20.el
b/emu-20.el
index
463dce7
..
d718ed7
100644
(file)
--- a/
emu-20.el
+++ b/
emu-20.el
@@
-53,7
+53,7
@@
(defun write-region-as-binary (start end filename
&optional append visit lockname)
"Like `write-region', q.v., but don't code conversion."
- (let ((coding-system-for-read 'binary))
+ (let ((coding-system-for-write 'binary))
(write-region start end filename append visit lockname)
))