emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b98a2ef: Fix last change in etags.c, which failed t


From: Eli Zaretskii
Subject: [Emacs-diffs] master b98a2ef: Fix last change in etags.c, which failed the test suite
Date: Sun, 24 May 2015 07:20:33 +0000

branch: master
commit b98a2ef74758f78831d7c6dd4ae13f3433d77869
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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.
---
 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 facb462..f049f42 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -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,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]