]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs.c (main): Call fixup_locale a second time for GNUStep.
authorJan Djärv <jan.h.d@swipnet.se>
Sun, 8 Dec 2013 12:18:13 +0000 (13:18 +0100)
committerJan Djärv <jan.h.d@swipnet.se>
Sun, 8 Dec 2013 12:18:13 +0000 (13:18 +0100)
src/ChangeLog
src/emacs.c

index 02be1e9bd649cbd8ee1efbaf87488fa9741c1ab5..5711b356f6149b3430cdc3b21ac0f4d72e4f2b64 100644 (file)
@@ -1,3 +1,7 @@
+2013-12-08  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * emacs.c (main): Call fixup_locale a second time for GNUStep.
+
 2013-12-08  Martin Rudalics  <rudalics@gmx.at>
 
        * frame.c (x_set_font): Mark frame as garbaged (Bug#16028).
index 159b0d5040d516b7b348c3185f2c4b02d56d14f7..3243c38a87a4f189bbd12d58d6a2546219241f94 100644 (file)
@@ -1195,6 +1195,11 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
 
 #ifdef HAVE_NS
   ns_pool = ns_alloc_autorelease_pool ();
+#ifdef NS_IMPL_GNUSTEP
+  /* GNUStep stupidly resets our locale settings after we made them.  */
+  fixup_locale ();
+#endif
+
   if (!noninteractive)
     {
 #ifdef NS_IMPL_COCOA