replace utf8strchr with wcschr

This commit is contained in:
Lauri Tirkkonen
2019-03-13 19:40:52 +02:00
committed by Hiltjo Posthuma
parent 75b4ba4b4b
commit d5efd256aa
3 changed files with 4 additions and 22 deletions

View File

@ -30,9 +30,9 @@ static float chscale = 1.0;
/*
* word delimiter string
*
* More advanced example: " `'\"()[]{}"
* More advanced example: L" `'\"()[]{}"
*/
char *worddelimiters = " ";
wchar_t *worddelimiters = L" ";
/* selection timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300;