]> git.eshelyaron.com Git - emacs.git/commitdiff
(Man-getpage-in-background): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Wed, 11 Oct 2000 23:59:16 +0000 (23:59 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 11 Oct 2000 23:59:16 +0000 (23:59 +0000)
Decode the process output only when we are in multibyte mode.

lisp/man.el

index dd53df7bd6311522eb0975451f951bf55d073a5f..2c92fba18227c991d148c9d11b217c71fa29ef62 100644 (file)
@@ -592,8 +592,10 @@ SECTION SUBJECT when prompted for a manual entry."
            ;; But don't prevent decoding of the outside.
            (coding-system-for-write 'raw-text-unix)
            ;; We must decode the output by a coding system that the
-           ;; systen locale suggests.
-           (coding-system-for-read locale-coding-system)
+           ;; systen locale suggests in multibyte mode.
+           (coding-system-for-read
+            (if default-enable-multibyte-characters
+                locale-coding-system 'raw-text-unix))
            ;; Avoid possible error by using a directory that always exists.
            (default-directory "/"))
        ;; Prevent any attempt to use display terminal fanciness.