* src/nsterm.m ([EmacsView keyDown:]): Remove ns_fake_keydown as
there's no code that ever sets it to YES.
#endif
static int ns_window_num = 0;
static BOOL gsaved = NO;
-static BOOL ns_fake_keydown = NO;
#ifdef NS_IMPL_COCOA
static BOOL ns_menu_bar_is_hidden = NO;
#endif
-/* static int debug_lock = 0; */
/* event loop */
static BOOL send_appdefined = YES;
NSTRACE ("[EmacsView keyDown:]");
/* Rhapsody and macOS give up and down events for the arrow keys. */
- if (ns_fake_keydown == YES)
- ns_fake_keydown = NO;
- else if ([theEvent type] != NSEventTypeKeyDown)
+ if ([theEvent type] != NSEventTypeKeyDown)
return;
if (!emacs_event)