aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/emacs.c5
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 02be1e9bd64..5711b356f61 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-12-08 Jan Djärv <jan.h.d@swipnet.se>
2
3 * emacs.c (main): Call fixup_locale a second time for GNUStep.
4
12013-12-08 Martin Rudalics <rudalics@gmx.at> 52013-12-08 Martin Rudalics <rudalics@gmx.at>
2 6
3 * frame.c (x_set_font): Mark frame as garbaged (Bug#16028). 7 * frame.c (x_set_font): Mark frame as garbaged (Bug#16028).
diff --git a/src/emacs.c b/src/emacs.c
index 159b0d5040d..3243c38a87a 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1195,6 +1195,11 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
1195 1195
1196#ifdef HAVE_NS 1196#ifdef HAVE_NS
1197 ns_pool = ns_alloc_autorelease_pool (); 1197 ns_pool = ns_alloc_autorelease_pool ();
1198#ifdef NS_IMPL_GNUSTEP
1199 /* GNUStep stupidly resets our locale settings after we made them. */
1200 fixup_locale ();
1201#endif
1202
1198 if (!noninteractive) 1203 if (!noninteractive)
1199 { 1204 {
1200#ifdef NS_IMPL_COCOA 1205#ifdef NS_IMPL_COCOA