Scope-eye.net Git Repository
/
liskon_frotz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3965b2d
)
Fix to appease -Wmisleading-indentation
author
David Griffith
<dave@661.org>
Thu, 15 Jun 2017 19:08:53 +0000
(12:08 -0700)
committer
David Griffith
<dave@661.org>
Thu, 15 Jun 2017 19:08:53 +0000
(12:08 -0700)
src/curses/ux_input.c
patch
|
blob
|
history
diff --git
a/src/curses/ux_input.c
b/src/curses/ux_input.c
index e8aff2e85330ca8e1376a0ba031c3f332d22a6e0..afd12a00350d156e47b966ae0922bb5f8e86daba 100644
(file)
--- 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