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

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@497 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2009-06-23 23:56:22 +00:00
parent 63e9faeae7
commit 541091ef06
1 changed files with 1 additions and 1 deletions

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};