diff options
| author | Eli Zaretskii | 2015-05-24 10:19:36 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-05-24 10:19:36 +0300 |
| commit | b98a2ef74758f78831d7c6dd4ae13f3433d77869 (patch) | |
| tree | 62fe6bc6ee3c90d60df922a59b7bb4e660645f93 /lib-src | |
| parent | 9f89ea1f84dbf708228ced0202774b36f30f2b01 (diff) | |
| download | emacs-b98a2ef74758f78831d7c6dd4ae13f3433d77869.tar.gz emacs-b98a2ef74758f78831d7c6dd4ae13f3433d77869.zip | |
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.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index facb462f67b..f049f42b442 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -194,6 +194,7 @@ static bool | |||
| 194 | intoken (unsigned char c) | 194 | intoken (unsigned char c) |
| 195 | { | 195 | { |
| 196 | static bool const table[UCHAR_MAX + 1] = { | 196 | static bool const table[UCHAR_MAX + 1] = { |
| 197 | ['$']=1, | ||
| 197 | ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1, | 198 | ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1, |
| 198 | ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1, | 199 | ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1, |
| 199 | ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1, | 200 | ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1, |