diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-16 18:08:22 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-16 18:08:22 -0500 |
commit | e10e68bfd7adda727d18dca27196798400f1a119 (patch) | |
tree | 853ba0856c92026c4cb68fb11a109a2e4fa1c6c3 /command.c | |
parent | 4b8db533619ee8eef64ded0793f413faaa7609c2 (diff) |
:build somewhat working!
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; } } |