diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-06 23:29:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-06 23:29:24 +0000 |
commit | 362e1a30c6f3527d5d0efc328c2fb448290cd6fc (patch) | |
tree | 91c408352947bec09aee2032949ef1acef606d15 /src/if_perl.xs | |
parent | 768b8c4dbcb3cdaccab87daa833ab176a438cc3c (diff) | |
download | vim-git-362e1a30c6f3527d5d0efc328c2fb448290cd6fc.tar.gz |
updated for version 7.0216v7.0216
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r-- | src/if_perl.xs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs index 0f1dcd27f..14cb86f2c 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -427,9 +427,10 @@ msg_split(s, attr) * work properly. */ char_u * -eval_to_string(arg, nextcmd) +eval_to_string(arg, nextcmd, dolist) char_u *arg; char_u **nextcmd; + int dolist; { return NULL; } @@ -827,7 +828,7 @@ Eval(str) PREINIT: char_u *value; PPCODE: - value = eval_to_string((char_u *)str, (char_u**)0); + value = eval_to_string((char_u *)str, (char_u **)0, TRUE); if (value == NULL) { XPUSHs(sv_2mortal(newSViv(0))); |