Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dhelp.c592 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n')) in cleanup_help_tags()
595 *p++ = p_hlg[0]; in cleanup_help_tags()
596 *p++ = p_hlg[1]; in cleanup_help_tags()
H A Doption.c1125 free_string_option(p_hlg); in set_helplang_default()
1126 p_hlg = vim_strsave(lang); in set_helplang_default()
1127 if (p_hlg == NULL) in set_helplang_default()
1128 p_hlg = empty_option; in set_helplang_default()
1132 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5) in set_helplang_default()
1134 p_hlg[0] = TOLOWER_ASC(p_hlg[3]); in set_helplang_default()
1135 p_hlg[1] = TOLOWER_ASC(p_hlg[4]); in set_helplang_default()
1138 else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') in set_helplang_default()
1140 p_hlg[0] = 'e'; in set_helplang_default()
1141 p_hlg[1] = 'n'; in set_helplang_default()
[all …]
H A Doptionstr.c810 else if (varp == &p_hlg) in did_set_string_option()
813 for (s = p_hlg; *s != NUL; s += 3) in did_set_string_option()
H A Doption.h647 EXTERN char_u *p_hlg; // 'helplang' variable
H A Dtag.c1858 for (s = p_hlg; *s != NUL; ++s) in find_tags()
H A Doptiondefs.h1281 (char_u *)&p_hlg, PV_NONE,