aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2007-05-23 21:42:10 +0000
committerNick Roberts2007-05-23 21:42:10 +0000
commitbdb1e01d987e6bc9765ffe78d99ba424a228e9e1 (patch)
tree0ca6da5e1d346dcec3e6cce61dd2f2c6db77e474
parentff7cd3aa8f53f1e2c221889dd9572bd2777e605f (diff)
downloademacs-bdb1e01d987e6bc9765ffe78d99ba424a228e9e1.tar.gz
emacs-bdb1e01d987e6bc9765ffe78d99ba424a228e9e1.zip
(make_lispy_movement): Condition on HAVE_GPM too.
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index d2e77fd8888..420b422c518 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6074,7 +6074,7 @@ make_lispy_event (event)
6074 } 6074 }
6075} 6075}
6076 6076
6077#ifdef HAVE_MOUSE 6077#if defined(HAVE_MOUSE) || defined(HAVE_GPM)
6078 6078
6079static Lisp_Object 6079static Lisp_Object
6080make_lispy_movement (frame, bar_window, part, x, y, time) 6080make_lispy_movement (frame, bar_window, part, x, y, time)
@@ -6113,7 +6113,7 @@ make_lispy_movement (frame, bar_window, part, x, y, time)
6113 } 6113 }
6114} 6114}
6115 6115
6116#endif /* HAVE_MOUSE */ 6116#endif /* HAVE_MOUSE || HAVE GPM */
6117 6117
6118/* Construct a switch frame event. */ 6118/* Construct a switch frame event. */
6119static Lisp_Object 6119static Lisp_Object