aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/command.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-09-28 18:27:59 +0800
committerGitHub <noreply@github.com>2022-09-28 18:27:59 +0800
commit35e2c4a2edd28f72c48c70530c5486365c2502a4 (patch)
treeec54859fafa670fb1b5b8d2801d1a5e0ee5d2e96 /src/nvim/api/command.c
parenteb4844b5ed9bcf8c434a93b9f9def4fe81557f37 (diff)
downloadrneovim-35e2c4a2edd28f72c48c70530c5486365c2502a4.tar.gz
rneovim-35e2c4a2edd28f72c48c70530c5486365c2502a4.tar.bz2
rneovim-35e2c4a2edd28f72c48c70530c5486365c2502a4.zip
fix(lua): fix architecture-dependent behavior in usercmd "reg" (#20384)
I don't think using an integer as a NUL-terminated string can work on big-endian systems, at least. This is also not tested. Add a test. Also fix a mistake in the docs of nvim_parse_cmd.
Diffstat (limited to 'src/nvim/api/command.c')
-rw-r--r--src/nvim/api/command.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/api/command.c b/src/nvim/api/command.c
index ed0907e8f8..699c62c15c 100644
--- a/src/nvim/api/command.c
+++ b/src/nvim/api/command.c
@@ -37,7 +37,7 @@
/// specified and two elements if both range items were specified.
/// - count: (number) Any |<count>| that was supplied to the command. -1 if command cannot
/// take a count.
-/// - reg: (number) The optional command |<register>|, if specified. Empty string if not
+/// - reg: (string) The optional command |<register>|, if specified. Empty string if not
/// specified or if command cannot take a register.
/// - bang: (boolean) Whether command contains a |<bang>| (!) modifier.
/// - args: (array) Command arguments.
@@ -165,9 +165,7 @@ Dictionary nvim_parse_cmd(String str, Dictionary opts, Error *err)
PUT(result, "count", INTEGER_OBJ(-1));
}
- char reg[2];
- reg[0] = (char)ea.regname;
- reg[1] = '\0';
+ char reg[2] = { (char)ea.regname, NUL };
PUT(result, "reg", CSTR_TO_OBJ(reg));
PUT(result, "bang", BOOLEAN_OBJ(ea.forceit));