diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-10-17 10:21:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-17 10:21:40 -0400 |
commit | 77e6ecf85aa756ebca4548e4cfbc906bf8fff568 (patch) | |
tree | cbbaf43aeb2f221b9c0431c94e73ef38e9c88a9f /src/nvim/main.c | |
parent | d2d30dfabdaacfd53b081354248402c797576482 (diff) | |
parent | b98383a2501007b979e491a13fcb1387f1d9101a (diff) | |
download | rneovim-77e6ecf85aa756ebca4548e4cfbc906bf8fff568.tar.gz rneovim-77e6ecf85aa756ebca4548e4cfbc906bf8fff568.tar.bz2 rneovim-77e6ecf85aa756ebca4548e4cfbc906bf8fff568.zip |
Merge pull request #15930 from dundargoc/vim-patch/old-style-c-comments
vim-patch:8.1.2396,8.1.2395,8.1.2394,8.1.2392,8.1.2368,8.1.2388,8.1.2379
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 9a82eccc6f..00a43c9c79 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; } |