diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-29 18:40:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-29 19:34:45 -0400 |
commit | af2f0ffdf4261bf1167f044ca771fa225f2ae977 (patch) | |
tree | 8256f108b6f411df484062617d733e8f1217b4af /src/nvim/ex_docmd.c | |
parent | 9d28875d50db01853944d96200579d44a9f973f6 (diff) | |
download | rneovim-af2f0ffdf4261bf1167f044ca771fa225f2ae977.tar.gz rneovim-af2f0ffdf4261bf1167f044ca771fa225f2ae977.tar.bz2 rneovim-af2f0ffdf4261bf1167f044ca771fa225f2ae977.zip |
vim-patch:8.1.2380: using old C style comments
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
https://github.com/vim/vim/commit/306139005c31ea7e6f892dd119beba3c94dcb982
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index bc3d29a03f..3aaf171b2c 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -7494,7 +7494,7 @@ static void ex_syncbind(exarg_T *eap) ctrl_o[0] = Ctrl_O; ctrl_o[1] = 0; - ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE); + ins_typebuf(ctrl_o, REMAP_NONE, 0, true, false); } } } |