summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2017-01-17 09:07:15 -0800
committerJim Meyering <meyering@fb.com>2017-01-17 09:10:02 -0800
commit8486cc9546c61eeb0decf65eca788e550254a93e (patch)
treebbf5b35c53d384142f4f41d903cf7d01e14ad34c /src
parentf20a648c6c24a4015cf801f5b11a78b2182ed171 (diff)
downloadgrep-8486cc9546c61eeb0decf65eca788e550254a93e.tar.gz
maint: avoid new syntax-check failures
* src/kwset.c (struct kwset): Split a line longer than 80. * bootstrap: Update from gnulib. This fixes a new syntax-check failure due to its use of "time stamp".
Diffstat (limited to 'src')
-rw-r--r--src/kwset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kwset.c b/src/kwset.c
index bbb837c4..0c0993df 100644
--- a/src/kwset.c
+++ b/src/kwset.c
@@ -101,7 +101,8 @@ struct kwset
unsigned char delta[NCHAR]; /* Delta table for rapid search. */
struct trie *next[NCHAR]; /* Table of children of the root. */
char *target; /* Target string if there's only one. */
- ptrdiff_t *shift; /* Used in Boyer-Moore search for one string. */
+ ptrdiff_t *shift; /* Used in Boyer-Moore search for one
+ string. */
char const *trans; /* Character translation table. */
/* If there's only one string, this is the string's last byte,