HomeSort by: relevance | last modified time | path
    Searched refs:wordchars (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libedit/
map.h 62 wchar_t *wordchars; /* The word character separators */ member in struct:el_map_t
map.c 936 el->el_map.wordchars = NULL;
958 el_free(el->el_map.wordchars);
1060 el_free(el->el_map.wordchars);
1061 el->el_map.wordchars = wcsdup(L"_");
1096 el_free(el->el_map.wordchars);
1097 el->el_map.wordchars = wcsdup(L"*?_-.[]~=");
1142 * Set the wordchars
1145 map_set_wordchars(EditLine *el, wchar_t *wordchars)
1148 el_free(el->el_map.wordchars);
1149 el->el_map.wordchars = wcsdup(wordchars)
    [all...]
chared.c 207 return iswalnum(p) || wcschr(el->el_map.wordchars, p) != NULL;
217 if (iswalnum(p) || wcschr(el->el_map.wordchars, p) != NULL)

Completed in 23 milliseconds