aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2000-08-22 23:33:55 +0000
committerAndrew Innes2000-08-22 23:33:55 +0000
commit690e96a3102395d359e06576cf4c4c7a38b13794 (patch)
treefa031c76c156b5b3fa54dbe060189d9d13b21f96 /src
parentc86a406437166a1b2cbd8f5707ba70aeec8e1865 (diff)
downloademacs-690e96a3102395d359e06576cf4c4c7a38b13794.tar.gz
emacs-690e96a3102395d359e06576cf4c4c7a38b13794.zip
Include keyboard.h before frame.h.
(MOUSE_MOVED): Define if not known.
Diffstat (limited to 'src')
-rw-r--r--src/w32inevt.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32inevt.c b/src/w32inevt.c
index 99e3ead3ae3..d060b57561f 100644
--- a/src/w32inevt.c
+++ b/src/w32inevt.c
@@ -29,7 +29,12 @@ Boston, MA 02111-1307, USA.
29#include <stdio.h> 29#include <stdio.h>
30#include <windows.h> 30#include <windows.h>
31 31
32#ifndef MOUSE_MOVED
33#define MOUSE_MOVED 1
34#endif
35
32#include "lisp.h" 36#include "lisp.h"
37#include "keyboard.h"
33#include "frame.h" 38#include "frame.h"
34#include "blockinput.h" 39#include "blockinput.h"
35#include "termhooks.h" 40#include "termhooks.h"