X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e8bda380bb491eba325e78827eb33c4a0abfbdda..9bf31d1d3f35880c652f76509d1e27d33e454121:/lib-src/etags.c diff --git a/lib-src/etags.c b/lib-src/etags.c index e8b71e6b96..1c85a79289 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -112,7 +112,6 @@ char pot_etags_version[] = "@(#) pot revision number is 17.38.1.4"; #ifdef WINDOWSNT # include -# define MAXPATHLEN _MAX_PATH # undef HAVE_NTGUI # undef DOS_NT # define DOS_NT @@ -4070,13 +4069,13 @@ Yacc_entries (FILE *inf) ((assert ("" kw), true) /* syntax error if not a literal string */ \ && strneq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \ && notinname ((cp)[sizeof (kw)-1]) /* end of kw */ \ - && ((cp) = skip_spaces ((cp)+sizeof (kw)-1))) /* skip spaces */ + && ((cp) = skip_spaces ((cp) + sizeof (kw) - 1), true)) /* skip spaces */ /* Similar to LOOKING_AT but does not use notinname, does not skip */ #define LOOKING_AT_NOCASE(cp, kw) /* the keyword is a literal string */ \ ((assert ("" kw), true) /* syntax error if not a literal string */ \ && strncaseeq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \ - && ((cp) += sizeof (kw)-1)) /* skip spaces */ + && ((cp) += sizeof (kw) - 1, true)) /* skip spaces */ /* * Read a file, but do no processing. This is used to do regexp