summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-03-24 20:41:07 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-03-24 20:41:07 +0000
commit1f1dd3fea89fee01e966b0980166a912a05681c7 (patch)
treec696be91912ea2389483b3873b9f43e56b5ac0ed /src/fe-common/core
parent0d26146cf6fe668af50bc4b497d82b1129172a88 (diff)
downloadirssi-1f1dd3fea89fee01e966b0980166a912a05681c7.zip
Added "nothing" action to /BIND.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2645 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/keyboard.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fe-common/core/keyboard.c b/src/fe-common/core/keyboard.c
index e622f973..3c0efade 100644
--- a/src/fe-common/core/keyboard.c
+++ b/src/fe-common/core/keyboard.c
@@ -633,6 +633,10 @@ static void sig_multi(const char *data, void *gui_data)
g_strfreev(list);
}
+static void sig_nothing(const char *data)
+{
+}
+
static void cmd_show_keys(const char *searchkey, int full)
{
GSList *info, *key;
@@ -816,6 +820,7 @@ void keyboard_init(void)
key_bind("command", "Run any IRC command", NULL, NULL, (SIGNAL_FUNC) sig_command);
key_bind("key", "Specify name for key binding", NULL, NULL, (SIGNAL_FUNC) sig_key);
key_bind("multi", "Run multiple commands", NULL, NULL, (SIGNAL_FUNC) sig_multi);
+ key_bind("nothing", "Do nothing", NULL, NULL, (SIGNAL_FUNC) sig_nothing);
/* read the keyboard config when all key binds are known */
signal_add("irssi init read settings", (SIGNAL_FUNC) read_keyboard_config);