Skip to content

Commit

Permalink
I can add starting and ending whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Jun 28, 2021
1 parent ce45800 commit 12f91a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scope.h
Expand Up @@ -208,9 +208,9 @@ scope has the given name. C<name> 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
Expand Down

0 comments on commit 12f91a2

Please sign in to comment.