# HG changeset patch # User Matti Hamalainen # Date 1308530528 -10800 # Node ID 64946336548a4fbc2b34b448cde17e42f76a69fa # Parent f55f8309aa66b7e312a2feb91b80dc97c5748c91 Don't log toggling of ignore mode messages. diff -r f55f8309aa66 -r 64946336548a nnchat.c --- a/nnchat.c Mon Jun 20 03:41:32 2011 +0300 +++ b/nnchat.c Mon Jun 20 03:42:08 2011 +0300 @@ -1713,7 +1713,7 @@ case KEY_F(5): /* F5 = Ignore mode */ setIgnoreMode = !setIgnoreMode; - printMsg(currWin, "Ignore mode = %s\n", setIgnoreMode ? "ON" : "OFF"); + printMsgQ(currWin, "Ignore mode = %s\n", setIgnoreMode ? "ON" : "OFF"); break; case 0x03: /* ^C = quit */