summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'command.c')
-rw-r--r--command.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/command.c b/command.c
index 310c76d..402686c 100644
--- a/command.c
+++ b/command.c
@@ -329,12 +329,16 @@ void command_execute(Ted *ted, Command c, i64 argument) {
ted->autocomplete = false;
} else if (ted->menu) {
menu_escape(ted);
- } else if (ted->find) {
- find_close(ted);
- } else if (ted->build_shown) {
- build_stop(ted);
- } else if (buffer) {
- buffer_disable_selection(buffer);
+ } else {
+ if (ted->find) {
+ find_close(ted);
+ }
+ if (ted->build_shown) {
+ build_stop(ted);
+ }
+ if (buffer) {
+ buffer_disable_selection(buffer);
+ }
}
break;