]> git.eshelyaron.com Git - emacs.git/commitdiff
Only set LANG if the ID is valid
authorAlan Third <alan@idiocy.org>
Sun, 14 Nov 2021 15:09:43 +0000 (15:09 +0000)
committerAlan Third <alan@idiocy.org>
Tue, 16 Nov 2021 20:52:10 +0000 (20:52 +0000)
* src/nsterm.m (ns_init_locale): Check the provided locale identifier
is available before trying to use it.

src/nsterm.m

index 1f17a30272cde9a3ed249719594070ff6f2a616f..e29dda684a0bc3c04d07a6b1422624d0692a9b15 100644 (file)
@@ -535,8 +535,11 @@ ns_init_locale (void)
 
   NSTRACE ("ns_init_locale");
 
-  @try
+  /* If we were run from a terminal then assume an unset LANG variable
+     is intentional and don't try to "fix" it.  */
+  if (!isatty (STDIN_FILENO))
     {
+      char *oldLocale = setlocale (LC_ALL, NULL);
       /* It seems macOS should probably use UTF-8 everywhere.
          'localeIdentifier' does not specify the encoding, and I can't
          find any way to get the OS to tell us which encoding to use,
@@ -544,12 +547,12 @@ ns_init_locale (void)
       NSString *localeID = [NSString stringWithFormat:@"%@.UTF-8",
                                      [locale localeIdentifier]];
 
-      /* Set LANG to locale, but not if LANG is already set.  */
-      setenv("LANG", [localeID UTF8String], 0);
-    }
-  @catch (NSException *e)
-    {
-      NSLog (@"Locale detection failed: %@: %@", [e name], [e reason]);
+      /* Check the locale ID is valid and if so set LANG, but not if
+         it is already set.  */
+      if (setlocale (LC_ALL, [localeID UTF8String]))
+        setenv("LANG", [localeID UTF8String], 0);
+
+      setlocale (LC_ALL, oldLocale);
     }
 }