diff options
| -rw-r--r-- | noice.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -303,10 +303,9 @@ nextsel(void) c = getch(); - for (i = 0; i < LEN(bindings); i++) { + for (i = 0; i < LEN(bindings); i++) if (c == bindings[i].sym) return bindings[i].act; - } return 0; } |