1
0
Fork 0

Merging upstream version 1.15.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:11:43 +01:00
parent 14665a711e
commit d975eb29d0
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
116 changed files with 6031 additions and 2284 deletions

View file

@ -5,7 +5,7 @@
*/
#undef NAME
#define NAME(n, d)
#define NAME(n, d, v)
#undef ENTRY
#define ENTRY(n, h, f, ...) \
@ -26,7 +26,7 @@ static int f(int argc, char **argv, struct command *command, struct plugin *plug
*/
#undef NAME
#define NAME(n, d)
#define NAME(n, d, v)
#undef ENTRY_W_ALIAS
#define ENTRY_W_ALIAS(n, h, f, a) \
@ -63,7 +63,7 @@ static struct command f ## _cmd = { \
*/
#undef NAME
#define NAME(n, d)
#define NAME(n, d, v)
#undef ENTRY
#define ENTRY(n, h, f, ...) &f ## _cmd,
@ -87,7 +87,7 @@ static struct command *commands[] = { \
*/
#undef NAME
#define NAME(n, d) .name = n, .desc = d,
#define NAME(n, d, v) .name = n, .desc = d, .version = v,
#undef COMMAND_LIST
#define COMMAND_LIST(args...)