Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dex_cmds.c21 static int linelen(int *has_tab);
148 int has_tab; in ex_align() local
194 has_tab = FALSE; // avoid uninit warnings in ex_align()
195 len = linelen(eap->cmdidx == CMD_right ? &has_tab in ex_align()
211 if (has_tab) in ex_align()
244 linelen(int *has_tab) in linelen() argument
268 if (has_tab != NULL) // check for embedded TAB in linelen()
269 *has_tab = (vim_strchr(first, TAB) != NULL); in linelen()