1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

Merge pull request #142 from RichardHitt/master

Fix "Fix URL Detection"
This commit is contained in:
bviktor 2012-10-08 13:29:38 -07:00
commit 77fb21c5d5

View File

@ -207,7 +207,7 @@ url_check_word (char *word, int len)
#ifdef WIN32
if ((len > 1 && word[0] == '\\') || (len > 2 && (((word[0] >= 'A' && word[0] <= 'Z') || (word[0] >= 'a' && word[0] <= 'z')) && word[1] == ':')))
#else
if (len > 1 && word[0] != '/')
if (len > 1 && word[0] == '/')
#endif
{
return WORD_PATH;