diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-07-17 22:22:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-07-17 22:22:36 +0000 |
commit | 1f8a58584016d85bf94ce838f88ac827c1961659 (patch) | |
tree | bf4867c7055dbce73075760b4b850d721c651924 /src/frame.h | |
parent | 63c26f7da492f7b093aeb271444e7265a00d67af (diff) | |
download | emacs-1f8a58584016d85bf94ce838f88ac827c1961659.tar.gz |
(struct frame): New field `mouse_moved'.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 4 |
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 /* The baud rate that was used to calculate costs for this frame. */ int cost_calculation_baud_rate; + + /* Nonzero if the mouse has moved on this display + since the last time we checked. */ + char mouse_moved; }; #ifdef MULTI_KBOARD /* Note that MULTI_KBOARD implies MULTI_FRAME */ |