comparison src/os_unix.c @ 29272:8175cd4c8fdd v8.2.5154

patch 8.2.5154: still mentioning version8, some cosmetic issues Commit: https://github.com/vim/vim/commit/abd56da30bae4a5c6c20b9363ccae12f7b126026 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 23 20:46:27 2022 +0100 patch 8.2.5154: still mentioning version8, some cosmetic issues Problem: Still mentioning version8, some cosmetic issues. Solution: Prefer mentioning version9, cosmetic improvements.
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Jun 2022 22:00:04 +0200
parents b12fd2b3be63
children a762488a5d08
comparison
equal deleted inserted replaced
29271:723cbd2896aa 29272:8175cd4c8fdd
173 #if defined(SIGWINCH) 173 #if defined(SIGWINCH)
174 static void sig_winch SIGPROTOARG; 174 static void sig_winch SIGPROTOARG;
175 #endif 175 #endif
176 #if defined(SIGTSTP) 176 #if defined(SIGTSTP)
177 static void sig_tstp SIGPROTOARG; 177 static void sig_tstp SIGPROTOARG;
178 // volatile because it is used in signal handler sig_tstp() and sigcont_handler(). 178 // volatile because it is used in signal handler sig_tstp() and
179 // sigcont_handler().
179 static volatile sig_atomic_t in_mch_suspend = FALSE; 180 static volatile sig_atomic_t in_mch_suspend = FALSE;
180 #endif 181 #endif
181 #if defined(SIGINT) 182 #if defined(SIGINT)
182 static void catch_sigint SIGPROTOARG; 183 static void catch_sigint SIGPROTOARG;
183 #endif 184 #endif