Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dviminfo.c737 histentry_T **tot_hist; in merge_history() local
748 tot_hist = ALLOC_MULT(histentry_T *, max_len); in merge_history()
750 if (tot_hist == NULL || new_hist == NULL) in merge_history()
752 vim_free(tot_hist); in merge_history()
757 tot_hist[i] = &viminfo_history[type][i]; in merge_history()
761 tot_hist[len++] = &histentry[i]; in merge_history()
764 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist); in merge_history()
771 new_hist[i] = *tot_hist[i]; in merge_history()
772 tot_hist[i]->hisstr = NULL; in merge_history()
788 vim_free(tot_hist); in merge_history()