Skip to content

Commit

Permalink
Allow periods in function names used in Hyperlink
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Mar 11, 2010
1 parent 34fdb22 commit 1aa8c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mushview.cpp
Expand Up @@ -1894,7 +1894,7 @@ const char * p = sName;
int i;
// check for A-Z, 0-9 or underscore
for (i = 0; *p && *p != '('; p++, i++)
if (!isalnum (*p) && *p != '_')
if (!isalnum (*p) && *p != '_' && *p != '.')
return false;

// can't be zero length
Expand Down

0 comments on commit 1aa8c1f

Please sign in to comment.