aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Ennen <mike.ennen@gmail.com>2016-10-25 23:03:04 -0700
committerJames McCoy <jamessan@jamessan.com>2016-12-12 10:17:35 -0500
commitf90551b0e67c1389cb91dfedbe9a111c677e67e2 (patch)
tree78f60fc109fb4baf03dde888f1f103d500fc2f3f /src
parent66922d89cce6ee381244d37f7c0c324cae815b45 (diff)
downloadrneovim-f90551b0e67c1389cb91dfedbe9a111c677e67e2.tar.gz
rneovim-f90551b0e67c1389cb91dfedbe9a111c677e67e2.tar.bz2
rneovim-f90551b0e67c1389cb91dfedbe9a111c677e67e2.zip
vim-patch:7.4.1564
Problem: An empty list in function() causes an error. Solution: Handle an empty list like there is no list of arguments. https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Diffstat (limited to 'src')
-rw-r--r--src/nvim/eval.c51
-rw-r--r--src/nvim/testdir/test_partial.vim10
-rw-r--r--src/nvim/version.c2
3 files changed, 41 insertions, 22 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 6dd0b8cb4a..36303d8313 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -9428,12 +9428,16 @@ static void f_function(typval_T *argvars, typval_T *rettv, FunPtr fptr)
char_u *name;
s = get_tv_string(&argvars[0]);
- if (s == NULL || *s == NUL || ascii_isdigit(*s))
+ if (s == NULL || *s == NUL || ascii_isdigit(*s)) {
EMSG2(_(e_invarg2), s);
- /* Don't check an autoload name for existence here. */
- else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
+ } else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s)) {
+ // Don't check an autoload name for existence here.
EMSG2(_("E700: Unknown function: %s"), s);
- else {
+ } else {
+ int dict_idx = 0;
+ int arg_idx = 0;
+ list_T *list = NULL;
+
if (STRNCMP(s, "s:", 2) == 0 || STRNCMP(s, "<SID>", 5) == 0) {
char sid_buf[25];
int off = *s == 's' ? 2 : 5;
@@ -9454,10 +9458,6 @@ static void f_function(typval_T *argvars, typval_T *rettv, FunPtr fptr)
}
if (argvars[1].v_type != VAR_UNKNOWN) {
- partial_T *pt;
- int dict_idx = 0;
- int arg_idx = 0;
-
if (argvars[2].v_type != VAR_UNKNOWN) {
// function(name, [args], dict)
arg_idx = 1;
@@ -9469,23 +9469,34 @@ static void f_function(typval_T *argvars, typval_T *rettv, FunPtr fptr)
// function(name, [args])
arg_idx = 1;
}
- if (dict_idx > 0 && (argvars[dict_idx].v_type != VAR_DICT
- || argvars[dict_idx].vval.v_dict == NULL)) {
- EMSG(_("E922: expected a dict"));
- xfree(name);
- return;
+ if (dict_idx > 0) {
+ if (argvars[dict_idx].v_type != VAR_DICT) {
+ EMSG(_("E922: expected a dict"));
+ xfree(name);
+ return;
+ }
+ if (argvars[dict_idx].vval.v_dict == NULL) {
+ dict_idx = 0;
+ }
}
- if (arg_idx > 0 && (argvars[arg_idx].v_type != VAR_LIST
- || argvars[arg_idx].vval.v_list == NULL)) {
- EMSG(_("E923: Second argument of function() must be a list or a dict"));
- xfree(name);
- return;
+ if (arg_idx > 0) {
+ if (argvars[arg_idx].v_type != VAR_LIST) {
+ EMSG(_("E923: Second argument of function() must be"
+ "a list or a dict"));
+ xfree(name);
+ return;
+ }
+ list = argvars[arg_idx].vval.v_list;
+ if (list == NULL || list->lv_len == 0) {
+ arg_idx = 0;
+ }
}
+ }
+ if (dict_idx > 0 || arg_idx > 0) {
+ partial_T *pt = (partial_T *)xcalloc(1, sizeof(partial_T));
- pt = (partial_T *)xcalloc(1, sizeof(partial_T));
if (pt != NULL) {
if (arg_idx > 0) {
- list_T *list = argvars[arg_idx].vval.v_list;
listitem_T *li;
int i = 0;
diff --git a/src/nvim/testdir/test_partial.vim b/src/nvim/testdir/test_partial.vim
index 998b232206..abb655841b 100644
--- a/src/nvim/testdir/test_partial.vim
+++ b/src/nvim/testdir/test_partial.vim
@@ -19,6 +19,9 @@ func Test_partial_args()
call assert_equal("foo/bar/xxx", Cb("xxx"))
call assert_equal("foo/bar/yyy", call(Cb, ["yyy"]))
+ let Cb = function('MyFunc', [])
+ call assert_equal("a/b/c", Cb("a", "b", "c"))
+
let Sort = function('MySort', [1])
call assert_equal([1, 2, 3], sort([3, 1, 2], Sort))
let Sort = function('MySort', [0])
@@ -34,10 +37,15 @@ func Test_partial_dict()
let Cb = function('MyDictFunc', ["foo", "bar"], dict)
call assert_equal("hello/foo/bar", Cb())
call assert_fails('Cb("xxx")', 'E492:')
+
+ let Cb = function('MyDictFunc', [], dict)
+ call assert_equal("hello/ttt/xxx", Cb("ttt", "xxx"))
+ call assert_fails('Cb("yyy")', 'E492:')
+
let Cb = function('MyDictFunc', ["foo"], dict)
call assert_equal("hello/foo/xxx", Cb("xxx"))
call assert_fails('Cb()', 'E492:')
let Cb = function('MyDictFunc', dict)
call assert_equal("hello/xxx/yyy", Cb("xxx", "yyy"))
- call assert_fails('Cb()', 'E492:')
+ call assert_fails('Cb("fff")', 'E492:')
endfunc
diff --git a/src/nvim/version.c b/src/nvim/version.c
index feb83e495a..66adaaff1e 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -878,7 +878,7 @@ static int included_patches[] = {
1567,
// 1566 NA
1565,
- // 1564,
+ 1564,
1563,
// 1562 NA
// 1561 NA