summaryrefslogtreecommitdiff
path: root/src/fe-text
diff options
context:
space:
mode:
authorWouter Coekaerts <coekie@irssi.org>2005-10-18 17:43:48 +0000
committercoekie <coekie@dbcabf3a-b0e7-0310-adc4-f8d773084564>2005-10-18 17:43:48 +0000
commit9548cbfadb8411f33aaf03bd6188cc5d5472eb7b (patch)
tree175f5256d60911bba7aa15a419f7c4bc2e1a9433 /src/fe-text
parent9eced80a50fde0e82f67f5c8179ce0b521a5895b (diff)
downloadirssi-9548cbfadb8411f33aaf03bd6188cc5d5472eb7b.zip
Fix warnings caused by r4043
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4046 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text')
-rw-r--r--src/fe-text/gui-readline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-text/gui-readline.c b/src/fe-text/gui-readline.c
index 78ba5654..d7f8190b 100644
--- a/src/fe-text/gui-readline.c
+++ b/src/fe-text/gui-readline.c
@@ -1105,8 +1105,8 @@ void gui_readline_init(void)
key_bind("backspace", "", "backspace", NULL, (SIGNAL_FUNC) key_backspace);
key_bind("delete_character", "", "delete", NULL, (SIGNAL_FUNC) key_delete_character);
key_bind("delete_character", NULL, "^D", NULL, (SIGNAL_FUNC) key_delete_character);
- key_bind("delete_next_word", NULL, "meta-d", NULL, (SIGNAL_FUNC) key_delete_next_word);
- key_bind("delete_previous_word", NULL, "meta-backspace", NULL, (SIGNAL_FUNC) key_delete_previous_word);
+ key_bind("delete_next_word", "", "meta-d", NULL, (SIGNAL_FUNC) key_delete_next_word);
+ key_bind("delete_previous_word", "", "meta-backspace", NULL, (SIGNAL_FUNC) key_delete_previous_word);
key_bind("delete_to_previous_space", "", "^W", NULL, (SIGNAL_FUNC) key_delete_to_previous_space);
key_bind("delete_to_next_space", "", "", NULL, (SIGNAL_FUNC) key_delete_to_next_space);
key_bind("erase_line", "", "^U", NULL, (SIGNAL_FUNC) key_erase_line);