diff options
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3168,8 +3168,7 @@ buffer_print_backlog (struct app_context *ctx, struct buffer *buffer) free (buffer_name_localized); // That is, minus the buffer switch line and the readline prompt - int display_limit = MAX (MAX (10, - (int) buffer->unseen_messages_count), g_terminal.lines - 2); + int display_limit = MAX (10, g_terminal.lines - 2); struct buffer_line *line = buffer->lines_tail; int to_display = line != NULL; |