]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/macterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
authorAndrew Choi <akochoi@shaw.ca>
Sun, 26 Nov 2000 06:35:26 +0000 (06:35 +0000)
committerAndrew Choi <akochoi@shaw.ca>
Sun, 26 Nov 2000 06:35:26 +0000 (06:35 +0000)
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.

mac/ChangeLog
mac/inc/epaths.h
src/ChangeLog
src/emacs.c

index 60fed9c1a41c43b88e8956f2921823dff17ff023..42e230e751f3ad5f0512d8bfbf1da3b54f9f8d1a 100644 (file)
@@ -1,3 +1,12 @@
+2000-11-26  Andrew Choi  <akochoi@i-cable.com>
+
+       * 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.
+
 2000-10-25  Andrew Choi  <akochoi@i-cable.com>
 
        * cw5-mcp.xml: renamed from emacs-cw5.mcp.xml.
index 706a8aa42d940afb39d0b9d46ec8ec35c86a7696..7dad4582efa6d664d4d2ccefcd0d924a208f0ec2 100644 (file)
@@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA.  */
    variable exec-path and the first file name in it sets the Lisp
    variable exec-directory.  exec-directory is used for finding
    executables and other architecture-dependent files.  */
-#define PATH_EXEC "~emacs/mac/bin"
+#define PATH_EXEC "~emacs/mac"
 
 /* Where Emacs should look for its architecture-independent data
    files, like the NEWS file.  The lisp variable data-directory
index 067468675696dc71c880e953f45b1240872eb032..971bd2bc047ec93d7351253f60618f51c2c5111e 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-26  Andrew Choi  <akochoi@i-cable.com>
+
+       * emacs.c (main) [macintosh]: call syms_of_frame before calling
+       init_window_once.
+
 2000-11-25  Jason Rumney  <jasonr@gnu.org>
 
        * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]: Args
index 53ee61cae80dd241fbdb615cc4f189311a8f1b5b..e2b1bffe81981cce50841f3a3db7b3b39de75eff 100644 (file)
@@ -1111,11 +1111,12 @@ main (argc, argv, envp)
       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 @@ main (argc, argv, envp)
       syms_of_macmenu ();
       syms_of_data ();
       syms_of_search ();
+      syms_of_frame ();
       
       x_term_init ();
       init_keyboard ();
@@ -1373,8 +1375,8 @@ main (argc, argv, envp)
 #ifndef macintosh
       /* Called before init_window_once for Mac OS.  */
       syms_of_search ();
-#endif
       syms_of_frame ();
+#endif
       syms_of_syntax ();
       syms_of_term ();
       syms_of_undo ();