1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Ignore case when checking key names.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@509 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-22 22:03:37 +00:00 committed by cras
parent aec85e1dbd
commit 511f95ccaf

View File

@ -23,6 +23,7 @@
#include "signals.h"
#include "commands.h"
#include "levels.h"
#include "misc.h"
#include "lib-config/iconfig.h"
#include "settings.h"
@ -325,7 +326,7 @@ static void cmd_bind(const char *data)
void keyboard_init(void)
{
keys = g_hash_table_new((GHashFunc) g_str_hash, (GCompareFunc) g_str_equal);
keys = g_hash_table_new((GHashFunc) g_istr_hash, (GCompareFunc) g_istr_equal);
keyinfos = NULL;
key_bind("command", "Run any IRC command", NULL, NULL, (SIGNAL_FUNC) sig_command);