Recognize numeric digits inside $id$ tags, eg: $XFree86$

PR: 30666
Submitted by: Tony Finch <dot@dotat.at>
This commit is contained in:
Peter Wemm 2001-12-10 20:44:31 +00:00
parent b60e55dbd0
commit 303451da31

View file

@ -233,7 +233,7 @@ match(fp) /* group substring between two KDELIM's; then do pattern match */
if (c == EOF && feof(fp) | ferror(fp))
return c;
switch (ctab[c]) {
case LETTER: case Letter:
case LETTER: case Letter: case DIGIT:
*tp++ = c;
if (tp < line+sizeof(line)-4)
break;