]> git.eshelyaron.com Git - emacs.git/commitdiff
(info-insert-file-contents): Bind
authorRichard M. Stallman <rms@gnu.org>
Mon, 8 Sep 1997 18:26:41 +0000 (18:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 8 Sep 1997 18:26:41 +0000 (18:26 +0000)
coding-system-for-write to no-conversion.

lisp/info.el

index 5cd4eda25872fd4ee987b895483ff36e61c54aaa..a52c76273d5eaa14268d2d1697a98474eb24ba53 100644 (file)
@@ -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)))))