aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorAndrew Choi2000-11-26 06:35:26 +0000
committerAndrew Choi2000-11-26 06:35:26 +0000
commitc1e279c22cc7fda1c8d7cae5dc4d762ea60efff7 (patch)
treee0b43b066fec7594b07f0c386b0f69b9e23d915d /src/emacs.c
parent47092217997cdb4cf1af20dd0ba887f0c1f9abed (diff)
downloademacs-c1e279c22cc7fda1c8d7cae5dc4d762ea60efff7.tar.gz
emacs-c1e279c22cc7fda1c8d7cae5dc4d762ea60efff7.zip
* 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.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c14
1 files changed, 8 insertions, 6 deletions
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 ();