We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9762d commit 76bb456Copy full SHA for 76bb456
patchlevel.h
@@ -25,6 +25,6 @@
25
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
26
looks for to find the patch level (for the sccs version string). */
27
28
-#define PATCHLEVEL 10
+#define PATCHLEVEL 11
29
30
#endif /* _PATCHLEVEL_H_ */
sig.c
@@ -585,7 +585,8 @@ termsig_handler (sig)
585
#if defined (JOB_CONTROL)
586
if (sig == SIGHUP && (interactive || (subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB))))
587
hangup_all_jobs ();
588
- end_job_control ();
+ if ((subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PROCSUB)) == 0)
589
+ end_job_control ();
590
#endif /* JOB_CONTROL */
591
592
#if defined (PROCESS_SUBSTITUTION)
0 commit comments