diff options
| author | Andrew Choi | 2001-05-15 11:08:46 +0000 |
|---|---|---|
| committer | Andrew Choi | 2001-05-15 11:08:46 +0000 |
| commit | fa0b4c1479daea88a5ef302c13d7acd7c6dcc670 (patch) | |
| tree | 87487042e4c1912efa825187dea9dc845fc7bb59 /mac/src/macterm.c | |
| parent | e335b66af5bd7f1baf8cbf862c507f03255e3b23 (diff) | |
| download | emacs-fa0b4c1479daea88a5ef302c13d7acd7c6dcc670.tar.gz emacs-fa0b4c1479daea88a5ef302c13d7acd7c6dcc670.zip | |
* 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.
Diffstat (limited to 'mac/src/macterm.c')
| -rw-r--r-- | mac/src/macterm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mac/src/macterm.c b/mac/src/macterm.c index a6f979ed7b4..3df7ae32ea5 100644 --- a/mac/src/macterm.c +++ b/mac/src/macterm.c | |||
| @@ -7532,7 +7532,7 @@ void | |||
| 7532 | clear_mouse_face (dpyinfo) | 7532 | clear_mouse_face (dpyinfo) |
| 7533 | struct mac_display_info *dpyinfo; | 7533 | struct mac_display_info *dpyinfo; |
| 7534 | { | 7534 | { |
| 7535 | if (tip_frame) | 7535 | if (!NILP (tip_frame)) |
| 7536 | return; | 7536 | return; |
| 7537 | 7537 | ||
| 7538 | if (! NILP (dpyinfo->mouse_face_window)) | 7538 | if (! NILP (dpyinfo->mouse_face_window)) |
| @@ -11260,6 +11260,8 @@ do_app_resume () | |||
| 11260 | mac_output *mwp = (mac_output *) GetWRefCon (FrontWindow ()); | 11260 | mac_output *mwp = (mac_output *) GetWRefCon (FrontWindow ()); |
| 11261 | struct frame *f = mwp->mFP; | 11261 | struct frame *f = mwp->mFP; |
| 11262 | 11262 | ||
| 11263 | SetCursor (&qd.arrow); | ||
| 11264 | |||
| 11263 | if (f) | 11265 | if (f) |
| 11264 | { | 11266 | { |
| 11265 | x_new_focus_frame (FRAME_MAC_DISPLAY_INFO (f), f); | 11267 | x_new_focus_frame (FRAME_MAC_DISPLAY_INFO (f), f); |