diff src/emacs.c @ 33886:ff4ddf873081

* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight): change references to members deleted from struct frame as in xterm.c. * inc/epaths.h: set PATH_EXEC to ~emacs/mac instead of ~emacs/mac/bin. * emacs.c (main) [macintosh]: call syms_of_frame before calling init_window_once.
author Andrew Choi <akochoi@shaw.ca>
date Sun, 26 Nov 2000 06:35:26 +0000
parents 001167797942
children 3873da2fd8b1
line wrap: on
line diff
--- a/src/emacs.c	Sat Nov 25 19:48:15 2000 +0000
+++ b/src/emacs.c	Sun Nov 26 06:35:26 2000 +0000
@@ -1111,11 +1111,12 @@
       syms_of_keyboard ();
 
 #ifdef macintosh
-      /* init_window_once calls make_terminal_frame which on Mac OS creates
-         a full-fledge output_mac type frame.  This does not work correctly
-         before syms_of_textprop, syms_of_macfns, syms_of_ccl,
-         syms_of_fontset, syms_of_xterm, syms_of_search, x_term_init, and
-         init_keyboard have already been called.  */
+      /* init_window_once calls make_terminal_frame which on Mac OS
+         creates a full-fledge output_mac type frame.  This does not
+         work correctly before syms_of_textprop, syms_of_macfns,
+         syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
+         syms_of_frame, x_term_init, and init_keyboard have already
+         been called.  */
       syms_of_textprop ();
       syms_of_macfns ();
       syms_of_ccl ();
@@ -1124,6 +1125,7 @@
       syms_of_macmenu ();
       syms_of_data ();
       syms_of_search ();
+      syms_of_frame ();
       
       x_term_init ();
       init_keyboard ();
@@ -1373,8 +1375,8 @@
 #ifndef macintosh
       /* Called before init_window_once for Mac OS.  */
       syms_of_search ();
+      syms_of_frame ();
 #endif
-      syms_of_frame ();
       syms_of_syntax ();
       syms_of_term ();
       syms_of_undo ();