aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
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 392b8b07cb30..123cd3f70a39 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();