From dad40a50a1dab8f04fc1b3ed8c448b9395d72618 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 16 Aug 2021 13:28:19 -0600 Subject: [PATCH] Update TAGS_CHANGED macro based on parse.h --- etc/codespell.exclude | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/codespell.exclude b/etc/codespell.exclude index 7814ba84f..687536c9c 100644 --- a/etc/codespell.exclude +++ b/etc/codespell.exclude @@ -2,6 +2,7 @@ * Returns true if any tags set in nt differ between ot and nt, else false. #define TAGS_CHANGED(ot, nt) \ ((TAG_SET((nt).follow) && (nt).follow != (ot).follow) || \ + (TAG_SET((nt).intercept) && (nt).intercept != (ot).intercept) || \ (TAG_SET((nt).log_input) && (nt).log_input != (ot).log_input) || \ (TAG_SET((nt).log_output) && (nt).log_output != (ot).log_output) || \ (TAG_SET((nt).noexec) && (nt).noexec != (ot).noexec) || \