From d155d7a8519987361169459b8d464ae1caef5e9c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 21 Dec 2018 16:04:21 +0100 Subject: patch 8.1.0615: get_tv function names are not consistent Problem: Get_tv function names are not consistent. Solution: Rename to tv_get. --- src/ex_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ex_cmds.c') diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 5cb326ef84..06df5affe2 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -8913,7 +8913,7 @@ ex_oldfiles(exarg_T *eap UNUSED) for (li = l->lv_first; li != NULL && !got_int; li = li->li_next) { ++nr; - fname = get_tv_string(&li->li_tv); + fname = tv_get_string(&li->li_tv); if (!message_filtered(fname)) { msg_outnum((long)nr); -- cgit v1.2.3