Lines Matching defs:locale
6151 * locale. So we convert it to UTF-8, allowing the X library to
7159 * Report the character-type locale that xterm was started in.
7186 const char *locale = xtermEnvLocale();
7187 if (!strcmp(locale, "C") || !strcmp(locale, "POSIX")) {
7200 * Tell whether xterm was started in a locale that uses UTF-8 encoding for
7216 char *locale = x_strdup(xtermEnvLocale());
7218 for (n = 0; locale[n] != 0; ++n) {
7219 locale[n] = x_toupper(locale[n]);
7221 if (strstr(locale, "UTF-8") != 0)
7223 else if (strstr(locale, "UTF8") != 0)
7225 free(locale);