Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dautocmd.c383 AutoCmd *ac, **prev_ac; in au_cleanup() local
400 prev_ac = &(ap->cmds); in au_cleanup()
401 for (ac = *prev_ac; ac != NULL; ac = *prev_ac) in au_cleanup()
407 *prev_ac = ac->next; in au_cleanup()
414 prev_ac = &(ac->next); in au_cleanup()
1045 AutoCmd **prev_ac; in do_autocmd_event() local
1276 prev_ac = &(ap->cmds); in do_autocmd_event()
1277 while ((ac = *prev_ac) != NULL) in do_autocmd_event()
1278 prev_ac = &ac->next; in do_autocmd_event()
1295 *prev_ac = ac; in do_autocmd_event()