File tree 2 files changed +16
-16
lines changed
2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -39,22 +39,6 @@ static struct scheme schemes[SchemeLast] = {
39
39
},
40
40
};
41
41
42
- #define DEFCMD (b , nme , cmd ) \
43
- { .bind = (b), \
44
- .name = (nme), \
45
- .command = (cmd), \
46
- .nchildren = 0, \
47
- .children = NULL, \
48
- },
49
-
50
- #define DEFPREFIX (b , nme , cs ) \
51
- { .bind = b, \
52
- .name = nme, \
53
- .command = 0, \
54
- .nchildren = LENGTH(cs), \
55
- .children = (cs), \
56
- },
57
-
58
42
static struct command test_commands [] = {
59
43
DEFCMD ("t" , "test command" , "echo ok" )
60
44
};
Original file line number Diff line number Diff line change @@ -39,6 +39,22 @@ static int sep_width;
39
39
static int bh , mw , mh ;
40
40
static XIC xic ;
41
41
42
+ #define DEFCMD (b , nme , cmd ) \
43
+ { .bind = (b), \
44
+ .name = (nme), \
45
+ .command = (cmd), \
46
+ .nchildren = 0, \
47
+ .children = NULL, \
48
+ },
49
+
50
+ #define DEFPREFIX (b , nme , cs ) \
51
+ { .bind = b, \
52
+ .name = nme, \
53
+ .command = 0, \
54
+ .nchildren = LENGTH(cs), \
55
+ .children = (cs), \
56
+ },
57
+
42
58
#include "cfg.h"
43
59
44
60
static int
You can’t perform that action at this time.
0 commit comments