]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unused variables
authorAlan Third <alan@idiocy.org>
Sat, 26 Jun 2021 14:39:19 +0000 (15:39 +0100)
committerAlan Third <alan@idiocy.org>
Sun, 4 Jul 2021 10:36:24 +0000 (11:36 +0100)
* src/nsterm.m ([EmacsView keyDown:]): Remove ns_fake_keydown as
there's no code that ever sets it to YES.

src/nsterm.m

index dc5ecc4564038e9a6c86d760759b6e833dfdc0df..b9e2c9b691659cb7d6f945ddebd1137f6826aa53 100644 (file)
@@ -277,11 +277,9 @@ static NSView *focus_view = NULL;
 #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;
@@ -6293,9 +6291,7 @@ not_in_argv (NSString *arg)
   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)