From 1627ad03bd1399bf7ba244c2963a32fc6e35b3cd Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 13 Oct 2000 22:17:37 +0000 Subject: [PATCH] Don't show timestamps when doing /LAST. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@736 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/printtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c index 16ffe62c..6f967f02 100644 --- a/src/fe-common/core/printtext.c +++ b/src/fe-common/core/printtext.c @@ -697,7 +697,7 @@ static void newline(WINDOW_REC *window) } #define show_timestamp(level) \ - ((level) != MSGLEVEL_NEVER && \ + ((level & (MSGLEVEL_NEVER|MSGLEVEL_LASTLOG)) == 0 && \ (timestamps || (msgs_timestamps && ((level) & MSGLEVEL_MSGS)))) static char *get_timestamp(TEXT_DEST_REC *dest)