Commit ce44f0e4 ce44f0e4bc3aa277fc46e817e66f44c80ae2298c by Sergey Poznyakoff

(isword): Allow dots in words.

1 parent bfcbdc8a
......@@ -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 *
......