Home
last modified time | relevance | path

Searched refs:codeset_name (Results 1 – 1 of 1) sorted by relevance

/mirbsd/src/gnu/usr.bin/cvs/lib/
Dregcomp.c811 char *codeset_name; in init_dfa() local
839 codeset_name = nl_langinfo (CODESET); in init_dfa()
841 codeset_name = getenv ("LC_ALL"); in init_dfa()
842 if (codeset_name == NULL || codeset_name[0] == '\0') in init_dfa()
843 codeset_name = getenv ("LC_CTYPE"); in init_dfa()
844 if (codeset_name == NULL || codeset_name[0] == '\0') in init_dfa()
845 codeset_name = getenv ("LANG"); in init_dfa()
846 if (codeset_name == NULL) in init_dfa()
847 codeset_name = ""; in init_dfa()
848 else if (strchr (codeset_name, '.') != NULL) in init_dfa()
[all …]