| ... | ... |
@@ -97,7 +97,7 @@ static void update_search(tty_interface_t *state) {
|
| 97 | 97 |
strcpy(state->last_search, state->search); |
| 98 | 98 |
} |
| 99 | 99 |
|
| 100 |
-void update_state(tty_interface_t *state) {
|
|
| 100 |
+static void update_state(tty_interface_t *state) {
|
|
| 101 | 101 |
if (strcmp(state->last_search, state->search)) {
|
| 102 | 102 |
update_search(state); |
| 103 | 103 |
draw(state); |
| ... | ... |
@@ -233,7 +233,7 @@ static const keybinding_t keybindings[] = {{"\x7f", action_del_char}, /* DEL */
|
| 233 | 233 |
|
| 234 | 234 |
#undef KEY_CTRL |
| 235 | 235 |
|
| 236 |
-void handle_input(tty_interface_t *state, const char *s) {
|
|
| 236 |
+static void handle_input(tty_interface_t *state, const char *s) {
|
|
| 237 | 237 |
char *input = state->input; |
| 238 | 238 |
strcat(state->input, s); |
| 239 | 239 |
|