[BUG_FIXED] Fix the clickable link issue for some links (add '~' in RegExp).

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@494 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2009-06-14 22:20:26 +00:00
parent e94b452d2a
commit 6dbed6e3c5

View File

@ -40,7 +40,7 @@
const TCHAR Notepad_plus::_className[32] = TEXT("Notepad++");
HWND Notepad_plus::gNppHWND = NULL;
const char *urlHttpRegExpr = "http://[a-z0-9_\\-\\+.:?&@=/%#]*";
const char *urlHttpRegExpr = "http://[a-z0-9_\\-\\+~.:?&@=/%#]*";
int docTabIconIDs[] = {IDI_SAVED_ICON, IDI_UNSAVED_ICON, IDI_READONLY_ICON};
enum tb_stat {tb_saved, tb_unsaved, tb_ro};