comparison src/nsterm.m @ 111408:9a159fc42f11

* nsterm.m (EmacsView-mouseExited:): Correct error in conditional logic pointed out by Eli Zaretskii.
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Fri, 05 Nov 2010 12:35:36 +0200
parents 4afa0b625189
children d53ee71e7e89
comparison
equal deleted inserted replaced
111407:672ffe880560 111408:9a159fc42f11
5311 struct ns_display_info *dpyinfo 5311 struct ns_display_info *dpyinfo
5312 = emacsframe ? FRAME_NS_DISPLAY_INFO (emacsframe) : NULL; 5312 = emacsframe ? FRAME_NS_DISPLAY_INFO (emacsframe) : NULL;
5313 5313
5314 NSTRACE (mouseExited); 5314 NSTRACE (mouseExited);
5315 5315
5316 if (dpyinfo || !emacsframe) 5316 if (!dpyinfo)
5317 return; 5317 return;
5318 5318
5319 last_mouse_movement_time = EV_TIMESTAMP (theEvent); 5319 last_mouse_movement_time = EV_TIMESTAMP (theEvent);
5320 5320
5321 if (emacsframe == dpyinfo->mouse_face_mouse_frame) 5321 if (emacsframe == dpyinfo->mouse_face_mouse_frame)