Commit ce44f0e4 ce44f0e4bc3aa277fc46e817e66f44c80ae2298c by Sergey Poznyakoff

(isword): Allow dots in words.

1 parent bfcbdc8a
...@@ -70,7 +70,7 @@ isword (int c) ...@@ -70,7 +70,7 @@ isword (int c)
70 if (mu_cfg_tie_in) 70 if (mu_cfg_tie_in)
71 return c && c != ';'; 71 return c && c != ';';
72 72
73 return isalnum (c) || c == '_' || c == '-'; 73 return isalnum (c) || c == '_' || c == '-' || c == '.';
74 } 74 }
75 75
76 static char * 76 static char *
......