aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/emacs.c14
2 files changed, 13 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 06746867569..971bd2bc047 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12000-11-26 Andrew Choi <akochoi@i-cable.com>
2
3 * emacs.c (main) [macintosh]: call syms_of_frame before calling
4 init_window_once.
5
12000-11-25 Jason Rumney <jasonr@gnu.org> 62000-11-25 Jason Rumney <jasonr@gnu.org>
2 7
3 * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]: Args 8 * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]: Args
diff --git a/src/emacs.c b/src/emacs.c
index 53ee61cae80..e2b1bffe819 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1111,11 +1111,12 @@ main (argc, argv, envp)
1111 syms_of_keyboard (); 1111 syms_of_keyboard ();
1112 1112
1113#ifdef macintosh 1113#ifdef macintosh
1114 /* init_window_once calls make_terminal_frame which on Mac OS creates 1114 /* init_window_once calls make_terminal_frame which on Mac OS
1115 a full-fledge output_mac type frame. This does not work correctly 1115 creates a full-fledge output_mac type frame. This does not
1116 before syms_of_textprop, syms_of_macfns, syms_of_ccl, 1116 work correctly before syms_of_textprop, syms_of_macfns,
1117 syms_of_fontset, syms_of_xterm, syms_of_search, x_term_init, and 1117 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1118 init_keyboard have already been called. */ 1118 syms_of_frame, x_term_init, and init_keyboard have already
1119 been called. */
1119 syms_of_textprop (); 1120 syms_of_textprop ();
1120 syms_of_macfns (); 1121 syms_of_macfns ();
1121 syms_of_ccl (); 1122 syms_of_ccl ();
@@ -1124,6 +1125,7 @@ main (argc, argv, envp)
1124 syms_of_macmenu (); 1125 syms_of_macmenu ();
1125 syms_of_data (); 1126 syms_of_data ();
1126 syms_of_search (); 1127 syms_of_search ();
1128 syms_of_frame ();
1127 1129
1128 x_term_init (); 1130 x_term_init ();
1129 init_keyboard (); 1131 init_keyboard ();
@@ -1373,8 +1375,8 @@ main (argc, argv, envp)
1373#ifndef macintosh 1375#ifndef macintosh
1374 /* Called before init_window_once for Mac OS. */ 1376 /* Called before init_window_once for Mac OS. */
1375 syms_of_search (); 1377 syms_of_search ();
1376#endif
1377 syms_of_frame (); 1378 syms_of_frame ();
1379#endif
1378 syms_of_syntax (); 1380 syms_of_syntax ();
1379 syms_of_term (); 1381 syms_of_term ();
1380 syms_of_undo (); 1382 syms_of_undo ();