diff options
| author | Tom Tromey | 2013-06-03 12:25:05 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-06-03 12:25:05 -0600 |
| commit | 68359abba96d7ec4db8aab3d3dd9cf1105c3bab5 (patch) | |
| tree | 862703e7e1a1888170136a8296a5750d6b2ae2eb /src/emacs.c | |
| parent | cbcba8ce7f980b01c18c0fd561ef6687b1361507 (diff) | |
| parent | e2d8a6f0a229b4ebe26484b892ec4f14888f58b6 (diff) | |
| download | emacs-68359abba96d7ec4db8aab3d3dd9cf1105c3bab5.tar.gz emacs-68359abba96d7ec4db8aab3d3dd9cf1105c3bab5.zip | |
merge from trunk; clean up some issues
Diffstat (limited to 'src/emacs.c')
| -rw-r--r-- | src/emacs.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 148bb836927..b4b726183cf 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1069,7 +1069,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1069 | 1069 | ||
| 1070 | noninteractive1 = noninteractive; | 1070 | noninteractive1 = noninteractive; |
| 1071 | 1071 | ||
| 1072 | /* Perform basic initializations (not merely interning symbols). */ | 1072 | /* Perform basic initializations (not merely interning symbols). */ |
| 1073 | 1073 | ||
| 1074 | if (!initialized) | 1074 | if (!initialized) |
| 1075 | { | 1075 | { |
| @@ -1081,8 +1081,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1081 | init_coding_once (); | 1081 | init_coding_once (); |
| 1082 | init_syntax_once (); /* Create standard syntax table. */ | 1082 | init_syntax_once (); /* Create standard syntax table. */ |
| 1083 | init_category_once (); /* Create standard category table. */ | 1083 | init_category_once (); /* Create standard category table. */ |
| 1084 | /* Must be done before init_buffer. */ | 1084 | init_casetab_once (); /* Must be done before init_buffer_once. */ |
| 1085 | init_casetab_once (); | ||
| 1086 | init_buffer_once (); /* Create buffer table and some buffers. */ | 1085 | init_buffer_once (); /* Create buffer table and some buffers. */ |
| 1087 | init_minibuf_once (); /* Create list of minibuffers. */ | 1086 | init_minibuf_once (); /* Create list of minibuffers. */ |
| 1088 | /* Must precede init_window_once. */ | 1087 | /* Must precede init_window_once. */ |
| @@ -1107,6 +1106,8 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1107 | syms_of_fileio (); | 1106 | syms_of_fileio (); |
| 1108 | /* Before syms_of_coding to initialize Vgc_cons_threshold. */ | 1107 | /* Before syms_of_coding to initialize Vgc_cons_threshold. */ |
| 1109 | syms_of_alloc (); | 1108 | syms_of_alloc (); |
| 1109 | /* May call Ffuncall and so GC, thus the latter should be initialized. */ | ||
| 1110 | init_print_once (); | ||
| 1110 | /* Before syms_of_coding because it initializes Qcharsetp. */ | 1111 | /* Before syms_of_coding because it initializes Qcharsetp. */ |
| 1111 | syms_of_charset (); | 1112 | syms_of_charset (); |
| 1112 | /* Before init_window_once, because it sets up the | 1113 | /* Before init_window_once, because it sets up the |
| @@ -1242,7 +1243,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1242 | 1243 | ||
| 1243 | #ifdef WINDOWSNT | 1244 | #ifdef WINDOWSNT |
| 1244 | globals_of_w32 (); | 1245 | globals_of_w32 (); |
| 1246 | #ifdef HAVE_W32NOTIFY | ||
| 1245 | globals_of_w32notify (); | 1247 | globals_of_w32notify (); |
| 1248 | #endif | ||
| 1246 | /* Initialize environment from registry settings. */ | 1249 | /* Initialize environment from registry settings. */ |
| 1247 | init_environment (argv); | 1250 | init_environment (argv); |
| 1248 | init_ntproc (dumping); /* must precede init_editfns. */ | 1251 | init_ntproc (dumping); /* must precede init_editfns. */ |
| @@ -1399,6 +1402,10 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1399 | syms_of_gnutls (); | 1402 | syms_of_gnutls (); |
| 1400 | #endif | 1403 | #endif |
| 1401 | 1404 | ||
| 1405 | #ifdef HAVE_GFILENOTIFY | ||
| 1406 | syms_of_gfilenotify (); | ||
| 1407 | #endif /* HAVE_GFILENOTIFY */ | ||
| 1408 | |||
| 1402 | #ifdef HAVE_INOTIFY | 1409 | #ifdef HAVE_INOTIFY |
| 1403 | syms_of_inotify (); | 1410 | syms_of_inotify (); |
| 1404 | #endif /* HAVE_INOTIFY */ | 1411 | #endif /* HAVE_INOTIFY */ |
| @@ -1409,7 +1416,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1409 | 1416 | ||
| 1410 | #ifdef WINDOWSNT | 1417 | #ifdef WINDOWSNT |
| 1411 | syms_of_ntterm (); | 1418 | syms_of_ntterm (); |
| 1419 | #ifdef HAVE_W32NOTIFY | ||
| 1412 | syms_of_w32notify (); | 1420 | syms_of_w32notify (); |
| 1421 | #endif /* HAVE_W32NOTIFY */ | ||
| 1413 | #endif /* WINDOWSNT */ | 1422 | #endif /* WINDOWSNT */ |
| 1414 | 1423 | ||
| 1415 | syms_of_threads (); | 1424 | syms_of_threads (); |