diff options
author | Valentin Batz <senneth@irssi.org> | 2005-05-09 15:18:24 +0000 |
---|---|---|
committer | vb <vb@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2005-05-09 15:18:24 +0000 |
commit | 721a4ef9eaa568f3f3df334b7aa22b4a45cfec50 (patch) | |
tree | 61c0845ba9fcabb342794cdeafb4135abe20f819 /src/fe-text/gui-readline.c | |
parent | b25310faf1b41e105394e4791bc8acba2e9c796d (diff) | |
download | irssi-721a4ef9eaa568f3f3df334b7aa22b4a45cfec50.zip |
Fixed bug where pasting is not using the character translation (http://bugs.irssi.org/index.php?id=151) patch by Unknown
Fixed a bug in scripts/autorejoin.pl so you can really use a space or a comma for separating the channels in /set autorejoin_channels
Changed svn:mime-type of .pl and .sh files into the text/x- version, so you can diff them
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3737 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-readline.c')
-rw-r--r-- | src/fe-text/gui-readline.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fe-text/gui-readline.c b/src/fe-text/gui-readline.c index 259b40e3..06ce0148 100644 --- a/src/fe-text/gui-readline.c +++ b/src/fe-text/gui-readline.c @@ -281,6 +281,7 @@ static void paste_send(void) history = command_history_current(active_win); command_history_add(history, text); + translate_output(text); signal_emit("send command", 3, text, active_win->active_server, active_win->active); g_free(text); @@ -293,6 +294,7 @@ static void paste_send(void) history = command_history_current(active_win); command_history_add(history, str->str); + translate_output(str->str); signal_emit("send command", 3, str->str, active_win->active_server, active_win->active); |