diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 2002-03-10 17:08:24 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 2002-03-10 17:08:24 +0000 |
| commit | a094749d899403628a79f054c22e1f5fa4c8c9b1 (patch) | |
| tree | 17d46190c45d3c4cc5916658b328856e36925dc2 /sys/ddb | |
| parent | a7f314ea9478f03a396510102d7ab3340233ee4b (diff) | |
Notes
Diffstat (limited to 'sys/ddb')
| -rw-r--r-- | sys/ddb/db_lex.c | 2 |
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(); |
