summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authordbivolaru <dbivolaru@jacobs-alumni.de>2021-12-29 19:41:47 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-29 19:41:47 +0000
commitab16ad33ba10dd12ff6660fa57b88f1a30ddd8ba (patch)
tree85f14e9648cb4131f50599c792afb620e6ef43b6 /src/ex_docmd.c
parent94fb8274ca8c93a10102d41c8bcc848f75cb7334 (diff)
patch 8.2.3941: SIGTSTP is not handledv8.2.3941
Problem: SIGTSTP is not handled. Solution: Handle SIGTSTP like pressing CTRL-Z. (closes #9422)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 8f4f4aea5e..12824a9dc9 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -109,7 +109,6 @@ static void ex_pedit(exarg_T *eap);
# define ex_pedit ex_ni
#endif
static void ex_hide(exarg_T *eap);
-static void ex_stop(exarg_T *eap);
static void ex_exit(exarg_T *eap);
static void ex_print(exarg_T *eap);
#ifdef FEAT_BYTEOFF
@@ -6200,7 +6199,7 @@ ex_hide(exarg_T *eap UNUSED)
/*
* ":stop" and ":suspend": Suspend Vim.
*/
- static void
+ void
ex_stop(exarg_T *eap)
{
/*