diff options
| author | Andrew Choi | 2000-11-26 06:35:26 +0000 |
|---|---|---|
| committer | Andrew Choi | 2000-11-26 06:35:26 +0000 |
| commit | c1e279c22cc7fda1c8d7cae5dc4d762ea60efff7 (patch) | |
| tree | e0b43b066fec7594b07f0c386b0f69b9e23d915d | |
| parent | 47092217997cdb4cf1af20dd0ba887f0c1f9abed (diff) | |
| download | emacs-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.
| -rw-r--r-- | mac/ChangeLog | 9 | ||||
| -rw-r--r-- | mac/inc/epaths.h | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/emacs.c | 14 |
4 files changed, 23 insertions, 7 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog index 60fed9c1a41..42e230e751f 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2000-11-26 Andrew Choi <akochoi@i-cable.com> | ||
| 2 | |||
| 3 | * src/macterm.c (x_handle_tool_bar_click): | ||
| 4 | (note_tool_bar_highlight): change references to members deleted | ||
| 5 | from struct frame as in xterm.c. | ||
| 6 | |||
| 7 | * inc/epaths.h: set PATH_EXEC to ~emacs/mac instead of | ||
| 8 | ~emacs/mac/bin. | ||
| 9 | |||
| 1 | 2000-10-25 Andrew Choi <akochoi@i-cable.com> | 10 | 2000-10-25 Andrew Choi <akochoi@i-cable.com> |
| 2 | 11 | ||
| 3 | * cw5-mcp.xml: renamed from emacs-cw5.mcp.xml. | 12 | * cw5-mcp.xml: renamed from emacs-cw5.mcp.xml. |
diff --git a/mac/inc/epaths.h b/mac/inc/epaths.h index 706a8aa42d9..7dad4582efa 100644 --- a/mac/inc/epaths.h +++ b/mac/inc/epaths.h | |||
| @@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 37 | variable exec-path and the first file name in it sets the Lisp | 37 | variable exec-path and the first file name in it sets the Lisp |
| 38 | variable exec-directory. exec-directory is used for finding | 38 | variable exec-directory. exec-directory is used for finding |
| 39 | executables and other architecture-dependent files. */ | 39 | executables and other architecture-dependent files. */ |
| 40 | #define PATH_EXEC "~emacs/mac/bin" | 40 | #define PATH_EXEC "~emacs/mac" |
| 41 | 41 | ||
| 42 | /* Where Emacs should look for its architecture-independent data | 42 | /* Where Emacs should look for its architecture-independent data |
| 43 | files, like the NEWS file. The lisp variable data-directory | 43 | files, like the NEWS file. The lisp variable data-directory |
diff --git a/src/ChangeLog b/src/ChangeLog index 06746867569..971bd2bc047 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-11-25 Jason Rumney <jasonr@gnu.org> | 6 | 2000-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 (); |