summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2002-03-10 17:08:24 +0000
committerdfr <dfr@FreeBSD.org>2002-03-10 17:08:24 +0000
commit1af6584d4990d34bac0105d7d028dddea939886e (patch)
tree17d46190c45d3c4cc5916658b328856e36925dc2 /sys/ddb
parent0f4c4de19aead730ceb7579b694af24326be7fc7 (diff)
downloadFreeBSD-src-1af6584d4990d34bac0105d7d028dddea939886e.zip
FreeBSD-src-1af6584d4990d34bac0105d7d028dddea939886e.tar.gz
Allow '.' in identifiers - some ia64 register names contain '.'.
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c
index 392b8b0..123cd3f 100644
--- a/sys/ddb/db_lex.c
+++ b/sys/ddb/db_lex.c
@@ -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();
OpenPOWER on IntegriCloud