including commands.c *after* defining command funcs

master
bx 2022-04-02 20:44:11 +00:00
parent 635fb539a3
commit 5c19952c66
3 changed files with 2 additions and 10 deletions

View File

@ -9,7 +9,5 @@ NULL,
['['] = c_unindent,
[']'] = c_indent,
['d'] = c_delete,
};

4
efn.c
View File

@ -8,9 +8,6 @@
#include "main.c"
#include "commands.c"
};
#include "c_quit.c"
#include "c_open.c"
@ -25,4 +22,5 @@
#include "c_indent.c"
#include "c_delete.c"
#include "commands.c"

4
main.c
View File

@ -39,7 +39,3 @@ main(int argc, char **argv) {
return 0;
}