aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-04-06 15:05:20 +0000
committerKalle Wallin <kaw@linux.se>2004-04-06 15:05:20 +0000
commitf6ac83fe56f7ee27fd441ffcdffb449690f536fa (patch)
treeb5ee2296d36ae60ae0b45823d35589098939c0f0
parent2285dd825ed3d4ca24af27bb49427333fb2f8368 (diff)
downloadmpd-f6ac83fe56f7ee27fd441ffcdffb449690f536fa.tar.gz
mpd-f6ac83fe56f7ee27fd441ffcdffb449690f536fa.tar.xz
mpd-f6ac83fe56f7ee27fd441ffcdffb449690f536fa.zip
Removed all binding to ESC (stop).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@614 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r--command.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/command.c b/command.c
index c6444c969..a96a90a3a 100644
--- a/command.c
+++ b/command.c
@@ -1,7 +1,3 @@
-/*
- * $Id: command.c,v 1.9 2004/03/17 14:59:32 kalle Exp $
- *
- */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -44,7 +40,7 @@ static command_definition_t cmds[] =
{
{ { 13, 0, 0 }, CMD_PLAY, "Play/Enter directory" },
{ { 'P', 0, 0 }, CMD_PAUSE, "Pause" },
- { { ESC, BS, 's' }, CMD_STOP, "Stop" },
+ { { 's', BS, 0 }, CMD_STOP, "Stop" },
{ { '>', 0, 0 }, CMD_TRACK_NEXT, "Next song" },
{ { '<', 0, 0 }, CMD_TRACK_PREVIOUS, "Previous song" },