Commit b70fe38e authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: normalize some indentation

parent 1c528db8
Showing with 29 additions and 31 deletions
+29 -31
......@@ -418,8 +418,7 @@ void assign_keyinfo(sc *s, const char *keystring)
s->keycode = 0;
else if (strcasecmp(s->keystr, "M-Space") == 0)
s->keycode = (int) ' ';
else {
if (!strcasecmp(s->keystr, "Up"))
else if (!strcasecmp(s->keystr, "Up"))
s->keycode = KEY_UP;
else if (!strcasecmp(s->keystr, "Down"))
s->keycode = KEY_DOWN;
......@@ -448,7 +447,6 @@ void assign_keyinfo(sc *s, const char *keystring)
s->keycode = KEY_HOME;
else if (!strcasecmp(s->keystr, "End"))
s->keycode = KEY_END;
}
}
#ifdef DEBUG
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment