]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix ediff message parsing in non-English locales
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 26 May 2021 22:38:33 +0000 (00:38 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 26 May 2021 22:38:33 +0000 (00:38 +0200)
* lisp/vc/ediff-diff.el (ediff-exec-process): Run diff in the C
locale to enable parsing the messages (bug#21387).

lisp/vc/ediff-diff.el

index b93dfc814c0a27011cb091345357bb0d66d6d5aa..270c99ef1fa9d82eb588493f69a6478711158fe3 100644 (file)
@@ -1146,7 +1146,10 @@ are ignored."
         (if (string-match "buffer" (symbol-name ediff-job-name))
             ediff-coding-system-for-write
           ediff-coding-system-for-read))
-       args)
+        (process-environment
+         ;; Avoid localization of messages so we can parse the output.
+         (cons "LC_MESSAGES=C" process-environment))
+        args)
     (setq args (append (split-string options)
                        (mapcar (lambda (file)
                                  (when (stringp file)