aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorLauri Tirkkonen <lotheac@iki.fi>2019-03-13 19:40:52 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-03-15 12:24:13 +0100
commitd5efd256aa3840476579a27293ef1fb92a4b51e7 (patch)
treec06cbb65210724bb2b654287f49c60e1c2f4fd76 /config.def.h
parent75b4ba4b4be70a3ae429b1719d18b021839216d5 (diff)
downloadst-patched-d5efd256aa3840476579a27293ef1fb92a4b51e7.tar.bz2
st-patched-d5efd256aa3840476579a27293ef1fb92a4b51e7.tar.xz
st-patched-d5efd256aa3840476579a27293ef1fb92a4b51e7.zip
replace utf8strchr with wcschr
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 0e01717..482901e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -30,9 +30,9 @@ static float chscale = 1.0;
30/* 30/*
31 * word delimiter string 31 * word delimiter string
32 * 32 *
33 * More advanced example: " `'\"()[]{}" 33 * More advanced example: L" `'\"()[]{}"
34 */ 34 */
35char *worddelimiters = " "; 35wchar_t *worddelimiters = L" ";
36 36
37/* selection timeouts (in milliseconds) */ 37/* selection timeouts (in milliseconds) */
38static unsigned int doubleclicktimeout = 300; 38static unsigned int doubleclicktimeout = 300;