]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_lispy_movement): Conditionalize on MULTI_FRAME.
authorRichard M. Stallman <rms@gnu.org>
Mon, 11 Apr 1994 21:34:38 +0000 (21:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 11 Apr 1994 21:34:38 +0000 (21:34 +0000)
(kbd_buffer_get_event): Call make_lispy_movement only if MULTI_FRAME.

src/keyboard.c

index dcda52ba4410ba99e7a3e6c0d9564efce370a7cf..c9eb36c03d380cb7921b6a82c48aa222ccfbee8f 100644 (file)
@@ -2088,13 +2088,13 @@ kbd_buffer_get_event ()
            obj = make_lispy_switch_frame (frame);
          internal_last_event_frame = frame;
        }
-#endif
 
       /* If we didn't decide to make a switch-frame event, go ahead and 
         return a mouse-motion event.  */
       if (NILP (obj))
        obj = make_lispy_movement (f, bar_window, part, x, y, time);
-     }
+#endif
+    }
   else
     /* We were promised by the above while loop that there was
        something for us to read!  */
@@ -2698,6 +2698,8 @@ make_lispy_event (event)
     }
 }
 
+#ifdef MULTI_FRAME
+
 static Lisp_Object
 make_lispy_movement (frame, bar_window, part, x, y, time)
      FRAME_PTR frame;
@@ -2777,6 +2779,8 @@ make_lispy_movement (frame, bar_window, part, x, y, time)
     }
 }
 
+#endif /* MULTI_FRAME */
+
 /* Construct a switch frame event.  */
 static Lisp_Object
 make_lispy_switch_frame (frame)