On Wed, 2009-11-11 at 06:12 -0800, Zachary T Welch wrote:
> This series systematically updates the command handlers signature:
>
> int (*foo)(cmd_ctx, cmd, args, argc)
>
> to
> int (*foo)(cmd_ctx, args, argc)
>
> It does this by unifying all definitions of the signature to a single
>
This series systematically updates the command handlers signature:
int (*foo)(cmd_ctx, cmd, args, argc)
to
int (*foo)(cmd_ctx, args, argc)
It does this by unifying all definitions of the signature to a single
location in command.h, using a set of relatively simple macros.
It fil