diff options
author | Lauri Tirkkonen <lotheac@iki.fi> | 2019-03-13 17:15:04 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-03-15 12:25:13 +0100 |
commit | add0211522737b79dad990ccd65c8af63b5cc1dd (patch) | |
tree | a64838abc0734a24b86229e610a339ef7cd35783 /st.h | |
parent | d5efd256aa3840476579a27293ef1fb92a4b51e7 (diff) |
use iswspace()/iswpunct() to find word delimiters
this inverts the configuration logic: you no longer provide a list of
delimiters -- all space and punctuation characters are considered
delimiters, unless listed in extrawordchars.
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ char *xstrdup(char *); extern char *utmp; extern char *stty_args; extern char *vtiden; -extern wchar_t *worddelimiters; +extern wchar_t *extrawordchars; extern int allowaltscreen; extern char *termname; extern unsigned int tabspaces; |