Allow '.' in identifiers - some ia64 register names contain '.'.

This commit is contained in:
Doug Rabson 2002-03-10 17:08:24 +00:00
parent a7f314ea94
commit a094749d89
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92011

View File

@ -206,7 +206,7 @@ db_lex()
if ((c >= 'A' && c <= 'Z') ||
(c >= 'a' && c <= 'z') ||
(c >= '0' && c <= '9') ||
c == '_' || c == '\\' || c == ':')
c == '_' || c == '\\' || c == ':' || c == '.')
{
if (c == '\\') {
c = db_read_char();