From: H.G. Muller Date: Fri, 12 Nov 2010 16:05:22 +0000 (+0100) Subject: List Hint with compliant commands X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=85f471c113ce3e3073afeda0b6e3535f979518f9;hp=6fc36efaa39c45911689000cfe10fd5c60aaf21b;p=xboard.git List Hint with compliant commands This command was omitted, so that in some -engineDebugOutput modes it would not appear in the debug file. --- diff --git a/backend.c b/backend.c index bd4bd75..49affee 100644 --- a/backend.c +++ b/backend.c @@ -13560,6 +13560,7 @@ ReceiveFromProgram(isr, closure, message, count, error) sscanf(message, "error %c", &c)!=1 && sscanf(message, "illegal %c", &c)!=1 && sscanf(message, "tell%c", &c)!=1 && sscanf(message, "0-1 %c", &c)!=1 && sscanf(message, "1-0 %c", &c)!=1 && sscanf(message, "1/2-1/2 %c", &c)!=1 && + sscanf(message, "hint: %c", &c)!=1 && sscanf(message, "pong %c", &c)!=1 && start != '#') { quote = appData.engineComments == 2 ? "# " : "### NON-COMPLIANT! ### "; print = (appData.engineComments >= 2);