# HG changeset patch # User Karl Heuer # Date 846196949 0 # Node ID 814f54228bf7af814ccb8b97727904442d4894b8 # Parent 63b6583c9e5c5cb43f9566dd189d5f4c012d952f (dired-insert-directory): Check for non-US LANG. diff -r 63b6583c9e5c -r 814f54228bf7 lisp/dired.el --- a/lisp/dired.el Wed Oct 23 11:21:05 1996 +0000 +++ b/lisp/dired.el Thu Oct 24 22:42:29 1996 +0000 @@ -606,7 +606,7 @@ dired-standard-move-to-filename-regexp) ;; It also isn't necessary if we'd use the C locale anyway. (not (equal (or (getenv "LC_ALL") (getenv "LC_TIME") - (getenv "LANGUAGE") "C") + (getenv "LANGUAGE") (getenv "LANG") "C") "C"))) (setq process-environment (cons "LC_ALL=C" process-environment))) (if (consp dir-or-list)