From 12f91a24478ac38de7dcd7409e32a7e8c9ef2b5c Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Sat, 26 Jun 2021 01:27:59 +0000 Subject: [PATCH] I can add starting and ending whitespace --- scope.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scope.h b/scope.h index 49177e32a872..cdae01957457 100644 --- a/scope.h +++ b/scope.h @@ -208,9 +208,9 @@ scope has the given name. C must be a literal string. STMT_START { \ DEBUG_SCOPE("LEAVE \"" name "\"") \ if (PL_scopestack_name) { \ - assert(((char*)PL_scopestack_name[PL_scopestack_ix-1] \ + assert( ((char*)PL_scopestack_name[PL_scopestack_ix-1] \ == (char*)name) \ - || strEQ(PL_scopestack_name[PL_scopestack_ix-1], name)); \ + || strEQ(PL_scopestack_name[PL_scopestack_ix-1], name) ); \ } \ pop_scope(); \ } STMT_END