diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-22 20:40:06 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-10-23 00:13:33 +0200 |
commit | 459a6ff05882e5249f02172b61f2bddc4b598e39 (patch) | |
tree | 2461740a620ddfbb7f8da2e6557f0a974b5c7cf1 /src/nvim/api/window.c | |
parent | 8b8db9e1586f0bdf5813eb32ec5bcfe8270442d1 (diff) | |
download | rneovim-459a6ff05882e5249f02172b61f2bddc4b598e39.tar.gz rneovim-459a6ff05882e5249f02172b61f2bddc4b598e39.tar.bz2 rneovim-459a6ff05882e5249f02172b61f2bddc4b598e39.zip |
test: system(): Avoid indeterminism.
Diffstat (limited to 'src/nvim/api/window.c')
-rw-r--r-- | src/nvim/api/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index 0cd0833598..ef881fa0eb 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -49,8 +49,8 @@ ArrayOf(Integer, 2) nvim_win_get_cursor(Window window, Error *err) /// Sets the cursor position in the window /// -/// @param window Window handle -/// @param pos (row, col) tuple representing the new position +/// @param window Window handle +/// @param pos (row, col) tuple representing the new position /// @param[out] err Error details, if any void nvim_win_set_cursor(Window window, ArrayOf(Integer, 2) pos, Error *err) { |