diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-08-22 23:33:55 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-08-22 23:33:55 +0000 |
commit | 690e96a3102395d359e06576cf4c4c7a38b13794 (patch) | |
tree | fa031c76c156b5b3fa54dbe060189d9d13b21f96 /src | |
parent | c86a406437166a1b2cbd8f5707ba70aeec8e1865 (diff) | |
download | emacs-690e96a3102395d359e06576cf4c4c7a38b13794.tar.gz |
Include keyboard.h before frame.h.
(MOUSE_MOVED): Define if not known.
Diffstat (limited to 'src')
-rw-r--r-- | src/w32inevt.c | 5 |
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. #include <stdio.h> #include <windows.h> +#ifndef MOUSE_MOVED +#define MOUSE_MOVED 1 +#endif + #include "lisp.h" +#include "keyboard.h" #include "frame.h" #include "blockinput.h" #include "termhooks.h" |