(syntax_table, re_syntax_table): Remove declarations of two unused
authorJim Meyering <jim@meyering.net>
Tue, 27 Apr 2004 18:39:21 +0000 (18:39 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 27 Apr 2004 18:39:21 +0000 (18:39 +0000)
variables (they were exposed by the above change).

src/ptx.c

index b6b9b8a21eadb2afe221e5185c8c0a85f1b329ee..b910a0b61e886241ee833de6b4b1cf3ffacf46c2 100644 (file)
--- a/src/ptx.c
+++ b/src/ptx.c
@@ -128,10 +128,6 @@ WORD_TABLE;
 /* For each character, provide its folded equivalent.  */
 static unsigned char folded_chars[CHAR_SET_SIZE];
 
-/* For each character, indicate if it is part of a word.  */
-static char syntax_table[CHAR_SET_SIZE];
-static char *re_syntax_table = syntax_table;
-
 /* Compiled regex for end of context.  */
 static struct re_pattern_buffer *context_regex;
 
@@ -436,11 +432,6 @@ initialize_regex (void)
 {
   int character;               /* character value */
 
-  /* Initialize the regex syntax table.  */
-
-  for (character = 0; character < CHAR_SET_SIZE; character++)
-    syntax_table[character] = ISALPHA (character) ? Sword : 0;
-
   /* Initialize the case folding table.  */
 
   if (ignore_case)