aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2007-03-18 08:07:17 +0000
committerYAMAMOTO Mitsuharu2007-03-18 08:07:17 +0000
commitc601a8ed61f7f9e5dc2f2434dc7c391440ae4ac3 (patch)
tree9fac023d77a5a25d0d1e4618691269ef94d13db5 /src
parent6a0ace5b78160de383444758feec3fc1d153467e (diff)
downloademacs-c601a8ed61f7f9e5dc2f2434dc7c391440ae4ac3.tar.gz
emacs-c601a8ed61f7f9e5dc2f2434dc7c391440ae4ac3.zip
(redisplay_internal, note_mouse_highlight): Check
popup_activated for MAC_OS.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog12
-rw-r--r--src/xdisp.c4
2 files changed, 14 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e87dbc60449..6204e5fd0d1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,15 @@
12007-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * macterm.c (note_mouse_movement): Don't return immediately for
4 LeaveNotify case.
5
6 * macmenu.c (popup_activated_flag): New variable.
7 (x_activate_menubar, mac_menu_show): Set it during menu tracking.
8 (popup_activated): New function.
9
10 * xdisp.c (redisplay_internal, note_mouse_highlight): Check
11 popup_activated for MAC_OS.
12
12007-03-17 Juanma Barranquero <lekktu@gmail.com> 132007-03-17 Juanma Barranquero <lekktu@gmail.com>
2 14
3 * buffer.c (syms_of_buffer) <buffer-display-table>: Doc fix. 15 * buffer.c (syms_of_buffer) <buffer-display-table>: Doc fix.
diff --git a/src/xdisp.c b/src/xdisp.c
index 544043f2747..c02a43d9a0c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -10872,7 +10872,7 @@ redisplay_internal (preserve_echo_area)
10872 return; 10872 return;
10873 } 10873 }
10874 10874
10875#if defined (USE_X_TOOLKIT) || defined (USE_GTK) 10875#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (MAC_OS)
10876 if (popup_activated ()) 10876 if (popup_activated ())
10877 return; 10877 return;
10878#endif 10878#endif
@@ -22672,7 +22672,7 @@ note_mouse_highlight (f, x, y)
22672 struct buffer *b; 22672 struct buffer *b;
22673 22673
22674 /* When a menu is active, don't highlight because this looks odd. */ 22674 /* When a menu is active, don't highlight because this looks odd. */
22675#if defined (USE_X_TOOLKIT) || defined (USE_GTK) 22675#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (MAC_OS)
22676 if (popup_activated ()) 22676 if (popup_activated ())
22677 return; 22677 return;
22678#endif 22678#endif