1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-24 19:03:29 +00:00

Fix last change in etags.c, which failed the test suite

* lib-src/etags.c (intoken): Add '$' to the set, as it was there
before the last change.
This commit is contained in:
Eli Zaretskii 2015-05-24 10:19:36 +03:00
parent 9f89ea1f84
commit b98a2ef747

View 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,