]> code.delx.au - gnu-emacs/commitdiff
Fix last change in etags.c, which failed the test suite
authorEli Zaretskii <eliz@gnu.org>
Sun, 24 May 2015 07:19:36 +0000 (10:19 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 24 May 2015 07:19:36 +0000 (10:19 +0300)
* lib-src/etags.c (intoken): Add '$' to the set, as it was there
before the last change.

lib-src/etags.c

index facb462f67b8c906244a1627422939434f1e69f1..f049f42b4429d40ae3cbf6f73878e942896cdcdc 100644 (file)
@@ -194,6 +194,7 @@ static bool
 intoken (unsigned char c)
 {
   static bool const table[UCHAR_MAX + 1] = {
+    ['$']=1,
     ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1,
     ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1,
     ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,