summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'command.c')
-rw-r--r--command.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/command.c b/command.c
index 01a7a88..5926a67 100644
--- a/command.c
+++ b/command.c
@@ -310,5 +310,11 @@ void command_execute(Ted *ted, Command c, i64 argument) {
}
build_start(ted);
break;
+ case CMD_BUILD_NEXT_ERROR:
+ build_next_error(ted);
+ break;
+ case CMD_BUILD_PREV_ERROR:
+ build_prev_error(ted);
+ break;
}
}