patch 9.1.0864: message history is fixed to 200

Problem:  message history is fixed to 200
Solution: Add the 'msghistory' option, increase the default
          value to 500 (Shougo Matsushita)

closes: #16048

Co-authored-by: Milly <milly.ca@gmail.com>
Signed-off-by: Shougo Matsushita <Shougo.Matsu@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Shougo Matsushita
2024-11-14 22:31:48 +01:00
committed by Christian Brabandt
parent de094dcd6f
commit 4bd9b2b246
13 changed files with 36 additions and 10 deletions

View File

@ -1013,7 +1013,7 @@ add_msg_hist(
return;
// Don't let the message history get too big
while (msg_hist_len > MAX_MSG_HIST_LEN)
while (msg_hist_len > p_mhi)
(void)delete_first_msg();
// allocate an entry and add the message at the end of the history