1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +02:00

Fix /input history_global_next: reset input content when last command in history is reached

This commit is contained in:
Sebastien Helleu
2009-09-16 15:28:29 +02:00
parent c2300c4095
commit b3501ce9cd
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
FlashCode <flashcode@flashtux.org>
v0.3.1-dev, 2009-09-15
v0.3.1-dev, 2009-09-16
Version 0.3.1 (under dev!)
@@ -9,6 +9,8 @@ Version 0.3.1 (under dev!)
* irc: add options for CTCP, to block/customize CTCP reply (task #9693)
* irc: add missing CTCP: clientinfo, finger, source, time, userinfo (task #7270)
* gui: fix /input history_global_next: reset input content when last command in
history is reached
* api: fix function weechat_bar_set for python/lua/ruby (patch #6912)
Version 0.3.0 (2009-09-06)
+1
View File
@@ -1078,6 +1078,7 @@ gui_input_history_global_next ()
}
else
{
gui_current_window->buffer->input_buffer[0] = '\0';
gui_current_window->buffer->input_buffer_size = 0;
gui_current_window->buffer->input_buffer_length = 0;
}