aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/viml/executor/executor.c
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-01-29 19:26:22 +0300
committerZyX <kp-pav@yandex.ru>2017-03-27 00:12:42 +0300
commite1bbaca7acf7fc498da49081d069b00aa05506df (patch)
tree4937daf77bbfdb7389c81b9342f157be29c83c17 /src/nvim/viml/executor/executor.c
parent9114d9be778b07f4a49edc078f1c159aa51320d8 (diff)
downloadrneovim-e1bbaca7acf7fc498da49081d069b00aa05506df.tar.gz
rneovim-e1bbaca7acf7fc498da49081d069b00aa05506df.tar.bz2
rneovim-e1bbaca7acf7fc498da49081d069b00aa05506df.zip
executor,functests: Add tests for :luado, also some fixes
Fixes: 1. Allocate space for the NUL byte. 2. Do not exclude last line from range. 3. Remove code for sandbox: it is handled earlier. 4. Fix index in new_line_transformed when converting NULs to NLs. 5. Always allocate new_line_transformed, but save allocated value.
Diffstat (limited to 'src/nvim/viml/executor/executor.c')
-rw-r--r--src/nvim/viml/executor/executor.c29
1 files changed, 11 insertions, 18 deletions
diff --git a/src/nvim/viml/executor/executor.c b/src/nvim/viml/executor/executor.c
index 80f2651afc..c426806b6f 100644
--- a/src/nvim/viml/executor/executor.c
+++ b/src/nvim/viml/executor/executor.c
@@ -160,17 +160,19 @@ static int nlua_exec_lua_string(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
static int nlua_exec_luado_string(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
{
const String *const str = (const String *)lua_touserdata(lstate, 1);
- const linenr_T *const range = (const linenr_T *)lua_touserdata(lstate, 1);
+ const linenr_T *const range = (const linenr_T *)lua_touserdata(lstate, 2);
lua_pop(lstate, 1);
#define DOSTART "return function(line, linenr) "
#define DOEND " end"
- const size_t lcmd_len = str->size + (sizeof(DOSTART) - 1) + (sizeof(DOEND) - 1);
+ const size_t lcmd_len = (str->size
+ + (sizeof(DOSTART) - 1)
+ + (sizeof(DOEND) - 1));
char *lcmd;
if (lcmd_len < IOSIZE) {
lcmd = (char *)IObuff;
} else {
- lcmd = xmalloc(lcmd_len);
+ lcmd = xmalloc(lcmd_len + 1);
}
memcpy(lcmd, S_LEN(DOSTART));
memcpy(lcmd + sizeof(DOSTART) - 1, str->data, str->size);
@@ -186,7 +188,7 @@ static int nlua_exec_luado_string(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
nlua_error(lstate, _("E5110: Error while creating lua function: %.*s"));
return 0;
}
- for (linenr_T l = range[0]; l < range[1]; l++) {
+ for (linenr_T l = range[0]; l <= range[1]; l++) {
if (l > curbuf->b_ml.ml_line_count) {
break;
}
@@ -198,24 +200,15 @@ static int nlua_exec_luado_string(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
break;
}
if (lua_isstring(lstate, -1)) {
- if (sandbox) {
- EMSG(_("E5112: Not allowed in sandbox"));
- lua_pop(lstate, 1);
- break;
- }
size_t new_line_len;
- const char *new_line = lua_tolstring(lstate, -1, &new_line_len);
- char *const new_line_transformed = (
- new_line_len < IOSIZE
- ? memcpy(IObuff, new_line, new_line_len)
- : xmemdupz(new_line, new_line_len));
- new_line_transformed[new_line_len] = NUL;
+ const char *const new_line = lua_tolstring(lstate, -1, &new_line_len);
+ char *const new_line_transformed = xmemdupz(new_line, new_line_len);
for (size_t i = 0; i < new_line_len; i++) {
- if (new_line_transformed[new_line_len] == NUL) {
- new_line_transformed[new_line_len] = '\n';
+ if (new_line_transformed[i] == NUL) {
+ new_line_transformed[i] = '\n';
}
}
- ml_replace(l, (char_u *)new_line_transformed, true);
+ ml_replace(l, (char_u *)new_line_transformed, false);
changed_bytes(l, 0);
}
lua_pop(lstate, 1);