summaryrefslogtreecommitdiff
path: root/guix/ui.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2024-01-25 22:33:52 +0100
committerLudovic Courtès <ludo@gnu.org>2024-06-17 22:56:59 +0200
commit4b6e954d916a2e955459a2620cfa7ec1a4a03794 (patch)
tree80c515e281276aad8746c92583b1d1c76c4916e4 /guix/ui.scm
parentdbe70da1cbd3ee5d8ee8e4d8b45c0936cd1cba92 (diff)
ui: Default to “C.UTF-8” locale instead of “en_US.utf8”.
This is a followup to 1cebc334a77030c0c94955981652f4df7608c9e3. * guix/ui.scm (install-locale): Default to “C.UTF-8”. Change-Id: Icc92bfe0d75c415eb11a9af207824544ed75e084
Diffstat (limited to 'guix/ui.scm')
-rw-r--r--guix/ui.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm
index d82fa533cc..bca4c385f5 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -531,7 +531,7 @@ See the \"Application Setup\" section in the manual, for more info.\n"))
;; We're now running in the "C" locale. Try to install a UTF-8 locale
;; instead. This one is guaranteed to be available in 'guix' from 'guix
;; pull'.
- (false-if-exception (setlocale LC_ALL "en_US.utf8")))))
+ (false-if-exception (setlocale LC_ALL "C.UTF-8")))))
(define (initialize-guix)
"Perform the usual initialization for stand-alone Guix commands."