summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorStuart Henderson <sthen@users.noreply.github.com>2022-03-09 14:33:02 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-09 14:33:02 +0000
commitf2832ad9653815103b39daf873511baa37424d3d (patch)
treea2ae1f9069f3aae01d9d2c489b7f7ff193a3af36 /src/os_unix.c
parentf01a653ac50bb3542c24d26bb3fa5371cc3b2ed7 (diff)
downloadvim-git-f2832ad9653815103b39daf873511baa37424d3d.tar.gz
patch 8.2.4532: suspending with CTRL-Z does not work on OpenBSDv8.2.4532
Problem: Suspending with CTRL-Z does not work on OpenBSD. Solution: Adjust #ifdef for SIGTSTP. (Stuart Henderson, closes #9912)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 58f8276fb..e617b128f 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -887,8 +887,9 @@ sig_tstp SIGDEFARG(sigarg)
else
got_tstp = TRUE;
-#ifndef __ANDROID__
- // this is not required on all systems
+#if !defined(__ANDROID__) && !defined(__OpenBSD__)
+ // This is not required on all systems. On some systems (at least Android
+ // and OpenBSD) this breaks suspending with CTRL-Z.
signal(SIGTSTP, (RETSIGTYPE (*)())sig_tstp);
#endif
SIGRETURN;