diff options
-rw-r--r-- | ChangeLog.adoc | 1 | ||||
-rw-r--r-- | src/gui/gui-history.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 22d1dca55..15c051f20 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -27,6 +27,7 @@ New features:: Bug fixes:: + * core: fix value of buffer variable "num_history" when the value defined in option weechat.history.max_commands is reached * core: remove incorrect warning when binding keys kbd:[F10] to kbd:[F20] (issue #2039) * core: call hook config when options are removed * core: display an error with command `/history N` when N is not a valid integer diff --git a/src/gui/gui-history.c b/src/gui/gui-history.c index aa0117bd5..ba4c1022f 100644 --- a/src/gui/gui-history.c +++ b/src/gui/gui-history.c @@ -88,7 +88,7 @@ gui_history_buffer_add (struct t_gui_buffer *buffer, const char *string) free (buffer->last_history->text); free (buffer->last_history); buffer->last_history = ptr_history; - buffer->num_history++; + buffer->num_history--; } } } |