Jim Meyering writes: > diff --git a/bootstrap.conf b/bootstrap.conf > index 9b2de22..3ab2c8b 100644 > --- a/bootstrap.conf > +++ b/bootstrap.conf > @@ -19,6 +19,7 @@ > # gnulib modules used by this package. > gnulib_modules=' > announce-gen > +argmatch > binary-io > c-stack > config-h > diff --git a/src/util.c b/src/util.c > index 65b06e9..d27d202 100644 > --- a/src/util.c > +++ b/src/util.c > @@ -19,6 +19,7 @@ > along with this program. If not, see . */ > > #include "diff.h" > +#include "argmatch.h" > #include > #include > #include > @@ -561,6 +562,7 @@ static const char *const indicator_name[]= > { > "lc", "rc", "ec", "rs", "hd", "ad", "de", "ln", NULL > }; > +ARGMATCH_VERIFY (indicator_name, color_indicator); > > static const char *color_palette; thanks for the review and the patch. I had to add this chunk as reported by "make syntax-check": diff --git a/po/POTFILES.in b/po/POTFILES.in index 74fb756..af39427 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -15,6 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +lib/argmatch.c lib/c-stack.c lib/error.c lib/file-type.c As it is hopefully getting closer to be accepted, I am attaching the full series with the amended changes. I've verified that each patch passes "make check" and "make syntax-check". Regards, Giuseppe