diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-06 10:50:53 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-06 11:50:10 +0200 |
commit | 3b3e2244dbee6adfb2efbae5d10796d1ea63820c (patch) | |
tree | 0119aff69b036d4a947a96674782de55995661e0 /src/nvim/main.c | |
parent | 86f32dfcdd392319de6b08b4643f633eb86a3fd0 (diff) | |
download | rneovim-3b3e2244dbee6adfb2efbae5d10796d1ea63820c.tar.gz rneovim-3b3e2244dbee6adfb2efbae5d10796d1ea63820c.tar.bz2 rneovim-3b3e2244dbee6adfb2efbae5d10796d1ea63820c.zip |
vim-patch:8.1.2388: using old C style comments
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
https://github.com/vim/vim/commit/4ba37b5833de99db9e9afe8928b31c864182405c
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 069c253bff..50ec6c1d88 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -583,9 +583,9 @@ void getout(int exitval) { exiting = true; - /* When running in Ex mode an error causes us to exit with a non-zero exit - * code. POSIX requires this, although it's not 100% clear from the - * standard. */ + // When running in Ex mode an error causes us to exit with a non-zero exit + // code. POSIX requires this, although it's not 100% clear from the + // standard. if (exmode_active) { exitval += ex_exitval; } |