comparison src/filepath.c @ 19181:94eda51ba9ba v8.2.0149

patch 8.2.0149: maintaining a Vim9 branch separately is more work Commit: https://github.com/vim/vim/commit/8a7d6542b33e5d2b352262305c3bfdb2d14e1cf8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 15:56:19 2020 +0100 patch 8.2.0149: maintaining a Vim9 branch separately is more work Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 16:00:05 +0100
parents d6c7b2f9aa20
children 8b710057093c
comparison
equal deleted inserted replaced
19180:8edf0aeb71b9 19181:94eda51ba9ba
1890 if (argvars[0].v_type == VAR_LIST) 1890 if (argvars[0].v_type == VAR_LIST)
1891 { 1891 {
1892 list = argvars[0].vval.v_list; 1892 list = argvars[0].vval.v_list;
1893 if (list == NULL) 1893 if (list == NULL)
1894 return; 1894 return;
1895 range_list_materialize(list);
1895 for (li = list->lv_first; li != NULL; li = li->li_next) 1896 for (li = list->lv_first; li != NULL; li = li->li_next)
1896 if (tv_get_string_chk(&li->li_tv) == NULL) 1897 if (tv_get_string_chk(&li->li_tv) == NULL)
1897 return; 1898 return;
1898 } 1899 }
1899 else if (argvars[0].v_type == VAR_BLOB) 1900 else if (argvars[0].v_type == VAR_BLOB)