From 7236f3ad5ffe2f1c9c7e5ca8fd1d5059b5a45c37 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 10 Sep 2024 10:46:17 -0400 Subject: [PATCH] macLib: add emphasis when expansion finds an undefined macro --- modules/libcom/src/macLib/macCore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libcom/src/macLib/macCore.c b/modules/libcom/src/macLib/macCore.c index 95cc441e9..34910b015 100644 --- a/modules/libcom/src/macLib/macCore.c +++ b/modules/libcom/src/macLib/macCore.c @@ -895,7 +895,7 @@ static void refer ( MAC_HANDLE *handle, MAC_ENTRY *entry, int level, entry->error = TRUE; errval = ",undefined)"; if ( (handle->flags & FLAG_SUPPRESS_WARNINGS) == 0 ) { - errlogPrintf( "macLib: macro %s is undefined (expanding %s %s)\n", + errlogPrintf( "macLib: macro %s is " ANSI_MAGENTA("undefined") " (expanding %s %s)\n", refname, entry->type, entry->name ); } }