aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2004-11-07 01:57:27 +0000
committerAndreas Schwab2004-11-07 01:57:27 +0000
commit3b6536b10170a03da2d0b4682513a2ec3d5df4e5 (patch)
tree00fc6b9df6b6486e92b68689b833d4a7e23200ef
parentc37ee7cb84b11bf38e1f391b2015a2ec74e5c4e1 (diff)
downloademacs-3b6536b10170a03da2d0b4682513a2ec3d5df4e5.tar.gz
emacs-3b6536b10170a03da2d0b4682513a2ec3d5df4e5.zip
Whitespace fixup.
-rw-r--r--src/emacs.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 67efa4ae4e5..e24b79aa116 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1620,16 +1620,14 @@ main (argc, argv
1620 keys_of_minibuf (); 1620 keys_of_minibuf ();
1621 keys_of_window (); 1621 keys_of_window ();
1622 } 1622 }
1623 else 1623 else
1624 { 1624 {
1625 /* 1625 /* Initialization that must be done even if the global variable
1626 Initialization that must be done even if the global variable 1626 initialized is non zero. */
1627 initialized is non zero
1628 */
1629#ifdef HAVE_NTGUI 1627#ifdef HAVE_NTGUI
1630 globals_of_w32fns (); 1628 globals_of_w32fns ();
1631 globals_of_w32menu (); 1629 globals_of_w32menu ();
1632#endif /* end #ifdef HAVE_NTGUI */ 1630#endif /* HAVE_NTGUI */
1633 } 1631 }
1634 1632
1635 if (!noninteractive) 1633 if (!noninteractive)
@@ -2279,7 +2277,7 @@ synchronize_locale (category, plocale, desired_locale)
2279 { 2277 {
2280 *plocale = desired_locale; 2278 *plocale = desired_locale;
2281 setlocale (category, (STRINGP (desired_locale) 2279 setlocale (category, (STRINGP (desired_locale)
2282 ? (char *)(SDATA (desired_locale)) 2280 ? (char *) SDATA (desired_locale)
2283 : "")); 2281 : ""));
2284 } 2282 }
2285} 2283}