From: David Griffith Date: Thu, 15 Jun 2017 19:08:53 +0000 (-0700) Subject: Fix to appease -Wmisleading-indentation X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=50f4c73bafe3ddcc75e87d0c81d1d71e52afcc89;p=liskon_frotz.git Fix to appease -Wmisleading-indentation --- diff --git a/src/curses/ux_input.c b/src/curses/ux_input.c index e8aff2e..afd12a0 100644 --- a/src/curses/ux_input.c +++ b/src/curses/ux_input.c @@ -259,8 +259,7 @@ static int unix_read_char(int extkeys) * to use one of the emacs keys that isn't implemented and he * gets a random hot key function. It's less jarring to catch * them and do nothing. [APP] */ - if ((c >= ZC_HKEY_MIN) && (c <= ZC_HKEY_MAX)) - continue; + if ((c >= ZC_HKEY_MIN) && (c <= ZC_HKEY_MAX)) continue; /* Finally, if we're in full line mode (os_read_line), we might return codes which aren't legal Z-machine keys but