mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 20:00:46 -08:00
(cnt): Rename to menu_grab_callback_cnt for clarity.
(menu_grab_callback): All uses changed.
This commit is contained in:
parent
0f0c86fc73
commit
c29ec096c7
1 changed files with 5 additions and 5 deletions
|
|
@ -1781,18 +1781,18 @@ menu_destroy_callback (w, client_data)
|
|||
CLIENT_DATA is NULL (not used). */
|
||||
|
||||
/* Keep track of total number of grabs. */
|
||||
static int cnt;
|
||||
static int menu_grab_callback_cnt;
|
||||
|
||||
static void
|
||||
menu_grab_callback (GtkWidget *widget,
|
||||
gboolean ungrab_p,
|
||||
gpointer client_data)
|
||||
{
|
||||
if (ungrab_p) cnt--;
|
||||
else cnt++;
|
||||
if (ungrab_p) menu_grab_callback_cnt--;
|
||||
else menu_grab_callback_cnt++;
|
||||
|
||||
if (cnt > 0 && ! xg_timer) xg_start_timer ();
|
||||
else if (cnt == 0 && xg_timer) xg_stop_timer ();
|
||||
if (menu_grab_callback_cnt > 0 && ! xg_timer) xg_start_timer ();
|
||||
else if (menu_grab_callback_cnt == 0 && xg_timer) xg_stop_timer ();
|
||||
}
|
||||
|
||||
/* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue