aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/info.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-09-08 18:26:41 +0000
committerRichard M. Stallman <[email protected]>1997-09-08 18:26:41 +0000
commit67053274b51431da907235cb47b62138ce228071 (patch)
tree6fde72e943deff85a40f314372b320ac532bae07 /lisp/info.el
parent29c98ed31c9c5208f01eba2630822256af3ef24b (diff)
(info-insert-file-contents): Bind
coding-system-for-write to no-conversion.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 5cd4eda258..a52c76273d 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -250,6 +250,7 @@ Do the right thing if the file has been compressed or zipped."
(insert-file-contents fullname visit)
(if decoder
(let ((buffer-read-only nil)
+ (coding-system-for-write 'no-conversion)
(default-directory (or (file-name-directory fullname)
default-directory)))
(call-process-region (point-min) (point-max) decoder t t)))))