Index: ChangeLog =================================================================== RCS file: /cvsroot/tvtime/tvtime/ChangeLog,v retrieving revision 1.222 diff -p -u -r1.222 ChangeLog --- ChangeLog 24 Sep 2005 16:16:54 -0000 1.222 +++ ChangeLog 10 Nov 2005 02:38:38 -0000 @@ -1,4 +1,6 @@ 1.0.2 - + * vektor: Add a proper TVTIME_NOOP command so that you can remove + keybindings. Thanks to Andrew Dalton for the fix. * vektor: Add back missing translations. 1.0.1 - Thu Sep 8 00:19:31 EDT 2005 Index: src/commands.c =================================================================== RCS file: /cvsroot/tvtime/tvtime/src/commands.c,v retrieving revision 1.287 diff -p -u -r1.287 commands.c --- src/commands.c 8 Sep 2005 02:35:29 -0000 1.287 +++ src/commands.c 10 Nov 2005 02:38:40 -0000 @@ -2128,6 +2128,9 @@ void commands_handle( commands_t *cmd, i } switch( tvtime_cmd ) { + case TVTIME_NOOP: + break; + case TVTIME_QUIT: cmd->quit = 1; break; Index: src/utils.c =================================================================== RCS file: /cvsroot/tvtime/tvtime/src/utils.c,v retrieving revision 1.77 diff -p -u -r1.77 utils.c --- src/utils.c 30 Mar 2005 02:59:38 -0000 1.77 +++ src/utils.c 10 Nov 2005 02:38:40 -0000 @@ -486,7 +486,7 @@ static command_names_t command_table[] = { "MIXER_TOGGLE_MUTE", TVTIME_MIXER_TOGGLE_MUTE }, { "MIXER_UP", TVTIME_MIXER_UP }, - { "NOOP", TVTIME_NOCOMMAND }, + { "NOOP", TVTIME_NOOP }, { "OVERSCAN_DOWN", TVTIME_OVERSCAN_DOWN }, { "OVERSCAN_UP", TVTIME_OVERSCAN_UP }, Index: src/utils.h =================================================================== RCS file: /cvsroot/tvtime/tvtime/src/utils.h,v retrieving revision 1.35 diff -p -u -r1.35 utils.h --- src/utils.h 8 Oct 2004 05:02:40 -0000 1.35 +++ src/utils.h 10 Nov 2005 02:38:40 -0000 @@ -215,6 +215,7 @@ enum tvtime_commands TVTIME_TOGGLE_QUIET_SCREENSHOTS, TVTIME_DISPLAY_MESSAGE, TVTIME_KEY_EVENT, + TVTIME_NOOP, TVTIME_UP, TVTIME_DOWN,