Lines Matching refs:list
25 int vi_mode, tabstop, list;
133 struct double_list **list, char *data)
137 if (*list == *head) *head = new;
139 dlist_add_nomalloc(list, new);
144 struct double_list **list, char *data)
149 if (*list) {
150 new->prev = *list;
151 new->next = (*list)->next;
152 (*list)->next->prev = new;
153 (*list)->next = new;
154 } else *head = *list = new->next = new->prev = new;
1278 else if (strstr(&cmd[1], "set list")) {
1279 TT.list = 1;
1284 TT.list = 0;
1296 if (wc < 32 && TT.list) {