comparison src/emacs.c @ 48888:f0df5f687c15

Revisited my earlier fix for the following entry in etc/PROBLEMS: 'Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs builtpart of on XP crashes at startup on Windows 9x/ME.' Fixed several Windows API errors detected by BoundsChecker
author Ben Key <bkey1@tampabay.rr.com>
date Wed, 18 Dec 2002 06:16:28 +0000
parents e140ab04c876
children c955fcb7a64a d7ddb3e565de
comparison
equal deleted inserted replaced
48887:e846f8d1619c 48888:f0df5f687c15
1373 else 1373 else
1374 tzset (); 1374 tzset ();
1375 #endif /* MSDOS */ 1375 #endif /* MSDOS */
1376 1376
1377 #ifdef WINDOWSNT 1377 #ifdef WINDOWSNT
1378 globals_of_w32 ();
1378 /* Initialize environment from registry settings. */ 1379 /* Initialize environment from registry settings. */
1379 init_environment (argv); 1380 init_environment (argv);
1380 init_ntproc (); /* must precede init_editfns. */ 1381 init_ntproc (); /* must precede init_editfns. */
1381 #endif 1382 #endif
1382 1383
1538 keys_of_buffer (); 1539 keys_of_buffer ();
1539 keys_of_keyboard (); 1540 keys_of_keyboard ();
1540 keys_of_keymap (); 1541 keys_of_keymap ();
1541 keys_of_minibuf (); 1542 keys_of_minibuf ();
1542 keys_of_window (); 1543 keys_of_window ();
1544 }
1545 else
1546 {
1547 /*
1548 Initialization that must be done even if the global variable
1549 initialized is non zero
1550 */
1551 #ifdef HAVE_NTGUI
1552 globals_of_w32fns ();
1553 globals_of_w32menu ();
1554 #endif /* end #ifdef HAVE_NTGUI */
1543 } 1555 }
1544 1556
1545 if (!noninteractive) 1557 if (!noninteractive)
1546 { 1558 {
1547 #ifdef VMS 1559 #ifdef VMS