]> git.eshelyaron.com Git - emacs.git/commitdiff
MS-Windows followup for batch stdout/stderr output changes
authorEli Zaretskii <eliz@gnu.org>
Mon, 1 Jun 2015 15:17:28 +0000 (18:17 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 1 Jun 2015 15:17:28 +0000 (18:17 +0300)
* lisp/international/mule-cmds.el (set-locale-environment): In
batch mode, use console codepages for keyboard and terminal
encoding.  (Bug#20545)

lisp/international/mule-cmds.el

index c8cd76f5eb13f31a7b061c20f5d9721b6a11ec85..474806d204e753520a4442a71c8b41947ce55757 100644 (file)
@@ -2688,14 +2688,22 @@ See also `locale-charset-language-names', `locale-language-names',
 
     ;; On Windows, override locale-coding-system,
     ;; default-file-name-coding-system, keyboard-coding-system,
-    ;; terminal-coding-system with system codepage.
+    ;; terminal-coding-system with the ANSI or console codepage.
     (when (and (eq system-type 'windows-nt)
                (boundp 'w32-ansi-code-page))
-      (let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page))))
+      (let* ((code-page-coding
+              (intern (format "cp%d" (if noninteractive
+                                         (w32-get-console-codepage)
+                                       w32-ansi-code-page))))
+             (output-coding
+              (if noninteractive
+                  (intern (format "cp%d" (w32-get-console-output-codepage)))
+                code-page-coding)))
        (when (coding-system-p code-page-coding)
+          (or output-coding (setq output-coding code-page-coding))
          (unless frame (setq locale-coding-system code-page-coding))
          (set-keyboard-coding-system code-page-coding frame)
-         (set-terminal-coding-system code-page-coding frame)
+         (set-terminal-coding-system output-coding frame)
          (setq default-file-name-coding-system code-page-coding))))
 
     (when (eq system-type 'darwin)