summaryrefslogtreecommitdiffstats
path: root/src/misc2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-21 16:04:21 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-21 16:04:21 +0100
commitd155d7a8519987361169459b8d464ae1caef5e9c (patch)
tree26d437fd67b33ca1b57aca568d4da40151bc9a81 /src/misc2.c
parent162b71479bd4dcdb3a2ef9198a1444f6f99e6843 (diff)
patch 8.1.0615: get_tv function names are not consistentv8.1.0615
Problem: Get_tv function names are not consistent. Solution: Rename to tv_get.
Diffstat (limited to 'src/misc2.c')
-rw-r--r--src/misc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc2.c b/src/misc2.c
index a0781d4408..3834979b8b 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -6593,7 +6593,7 @@ build_argv_from_list(list_T *l, char ***argv, int *argc)
*argc = 0;
for (li = l->lv_first; li != NULL; li = li->li_next)
{
- s = get_tv_string_chk(&li->li_tv);
+ s = tv_get_string_chk(&li->li_tv);
if (s == NULL)
{
int i;