aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-07-17 22:22:36 +0000
committerKarl Heuer1995-07-17 22:22:36 +0000
commit6462918ce537fd529f4a6f60227e7cdd0c10c7eb (patch)
treeb90f59d9da162082f3b77b6b18f99cd2d0bda21a /src
parentfbb908296b75005a5d8ca2fc64049ed86e023e8e (diff)
downloademacs-6462918ce537fd529f4a6f60227e7cdd0c10c7eb.tar.gz
emacs-6462918ce537fd529f4a6f60227e7cdd0c10c7eb.zip
(struct frame): New field `mouse_moved'.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index aaeb7a4d408..51672995b30 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -279,6 +279,10 @@ struct frame
279 279
280 /* The baud rate that was used to calculate costs for this frame. */ 280 /* The baud rate that was used to calculate costs for this frame. */
281 int cost_calculation_baud_rate; 281 int cost_calculation_baud_rate;
282
283 /* Nonzero if the mouse has moved on this display
284 since the last time we checked. */
285 char mouse_moved;
282}; 286};
283 287
284#ifdef MULTI_KBOARD /* Note that MULTI_KBOARD implies MULTI_FRAME */ 288#ifdef MULTI_KBOARD /* Note that MULTI_KBOARD implies MULTI_FRAME */