Re: [Openocd-development] [PATCH 0/20] update command handlers

2009-11-13 Thread Zach Welch
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 >

[Openocd-development] [PATCH 0/20] update command handlers

2009-11-11 Thread Zachary T Welch
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