0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.1.2378: using old C style comments

Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
This commit is contained in:
Bram Moolenaar
2019-12-01 21:11:22 +01:00
parent fa5612c7d8
commit 5d18efecfd
9 changed files with 2006 additions and 2012 deletions

View File

@@ -825,7 +825,7 @@ switch_buffer(bufref_T *save_curbuf, buf_T *buf)
restore_buffer(bufref_T *save_curbuf)
{
unblock_autocmds();
/* Check for valid buffer, just in case. */
// Check for valid buffer, just in case.
if (bufref_valid(save_curbuf))
{
--curbuf->b_nwindows;