aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-03-22 09:51:46 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-04-12 15:56:40 -0400
commit73dc9e943cfea92ec0254f6926c9524029cb0222 (patch)
treeafc1a6f2c02ed4793fc6c0e333b7d9ab4455f605 /src/nvim/api/vim.c
parent2ec6fec20bb12538b247d7cdacd201005149531c (diff)
downloadrneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.tar.gz
rneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.tar.bz2
rneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.zip
vim-patch:8.1.2378: using old C style comments
Problem: Using old C style comments. Solution: Use // comments where appropriate. https://github.com/vim/vim/commit/5d18efecfd6c45d69f55268948a22cd0465bb955
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index cf18f6b19a..7383a304f1 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -253,7 +253,7 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_csi)
if (execute) {
int save_msg_scroll = msg_scroll;
- /* Avoid a 1 second delay when the keys start Insert mode. */
+ // Avoid a 1 second delay when the keys start Insert mode.
msg_scroll = false;
if (!dangerous) {
ex_normal_busy++;