Mercurial > emacs
diff mac/src/macterm.c @ 37738:c04e66e2c50c
* src/Emacs.r: Change About box message.
* makefile.MPW: Add md5.c.x to EmacsObjects.
* src/mac.c (select): Call WaitNextEvent instead of Delay.
(pause): Ditto.
(sleep): Ditto.
* src/macterm.c (do_app_resume): Set cursor to arrow.
(clear_mouse_face): check for NIL Lisp object instead of null
pointer.
* INSTALL: Delete note on compiling Lisp files on a Unix system.
Add note on turning off end of line conversion.
| author | Andrew Choi <akochoi@shaw.ca> |
|---|---|
| date | Tue, 15 May 2001 11:08:46 +0000 |
| parents | 350e6092a4c4 |
| children | a280ecd33b5a |
line wrap: on
line diff
--- a/mac/src/macterm.c Tue May 15 10:42:45 2001 +0000 +++ b/mac/src/macterm.c Tue May 15 11:08:46 2001 +0000 @@ -7532,7 +7532,7 @@ clear_mouse_face (dpyinfo) struct mac_display_info *dpyinfo; { - if (tip_frame) + if (!NILP (tip_frame)) return; if (! NILP (dpyinfo->mouse_face_window)) @@ -11260,6 +11260,8 @@ mac_output *mwp = (mac_output *) GetWRefCon (FrontWindow ()); struct frame *f = mwp->mFP; + SetCursor (&qd.arrow); + if (f) { x_new_focus_frame (FRAME_MAC_DISPLAY_INFO (f), f);
