diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-06-23 20:46:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-23 20:46:27 +0100 |
commit | abd56da30bae4a5c6c20b9363ccae12f7b126026 (patch) | |
tree | 91029777d1cc974fb2570fd8835c7725dd31bd39 /src/os_unix.c | |
parent | 1b096b0d4a52cacf5ac782c7fa0d02cf0ef22fc4 (diff) | |
download | vim-git-abd56da30bae4a5c6c20b9363ccae12f7b126026.tar.gz |
patch 8.2.5154: still mentioning version8, some cosmetic issuesv8.2.5154
Problem: Still mentioning version8, some cosmetic issues.
Solution: Prefer mentioning version9, cosmetic improvements.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 260a84724..18c766d24 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -175,7 +175,8 @@ static void sig_winch SIGPROTOARG; #endif #if defined(SIGTSTP) static void sig_tstp SIGPROTOARG; -// volatile because it is used in signal handler sig_tstp() and sigcont_handler(). +// volatile because it is used in signal handler sig_tstp() and +// sigcont_handler(). static volatile sig_atomic_t in_mch_suspend = FALSE; #endif #if defined(SIGINT) |