summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-11-08 12:25:30 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-11-08 12:25:30 +0000
commitce44f0e4bc3aa277fc46e817e66f44c80ae2298c (patch)
treed7037d8ff5cc6f43cb4dd6da56b4735dcdbdabb9
parentbfcbdc8ad5020430991c18d44d897e7d29c19366 (diff)
downloadmailutils-ce44f0e4bc3aa277fc46e817e66f44c80ae2298c.tar.gz
mailutils-ce44f0e4bc3aa277fc46e817e66f44c80ae2298c.tar.bz2
(isword): Allow dots in words.
-rw-r--r--mailbox/cfg_lexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mailbox/cfg_lexer.c b/mailbox/cfg_lexer.c
index efd170200..8921914ff 100644
--- a/mailbox/cfg_lexer.c
+++ b/mailbox/cfg_lexer.c
@@ -70,7 +70,7 @@ isword (int c)
if (mu_cfg_tie_in)
return c && c != ';';
- return isalnum (c) || c == '_' || c == '-';
+ return isalnum (c) || c == '_' || c == '-' || c == '.';
}
static char *

Return to:

Send suggestions and report system problems to the System administrator.