vim-patch:8.1.2388: using old C style comments

Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
4ba37b5833
This commit is contained in:
Dundar Göc
2021-10-06 10:50:53 +02:00
parent 86f32dfcdd
commit 3b3e2244db
5 changed files with 65 additions and 65 deletions

View File

@@ -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;
}