diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-07-15 16:29:43 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-15 16:29:43 -0700 |
commit | 05920f041a57ac9ee86a8615cfca414450e65365 (patch) | |
tree | 0c79e5f67c6baa22073d8aaf8c9b57011c2adedd /run-command.h | |
parent | Git 2.28-rc0 (diff) | |
parent | Wait for child on signal death for aliases to externals (diff) | |
download | tgif-05920f041a57ac9ee86a8615cfca414450e65365.tar.xz |
Merge branch 'ta/wait-on-aliased-commands-upon-signal' into master
When an aliased command, whose output is piped to a pager by git,
gets killed by a signal, the pager got into a funny state, which
has been corrected (again).
* ta/wait-on-aliased-commands-upon-signal:
Wait for child on signal death for aliases to externals
Wait for child on signal death for aliases to builtins
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run-command.h b/run-command.h index 191dfcdafe..ef3071a565 100644 --- a/run-command.h +++ b/run-command.h @@ -229,6 +229,7 @@ int run_auto_gc(int quiet); #define RUN_SILENT_EXEC_FAILURE 8 #define RUN_USING_SHELL 16 #define RUN_CLEAN_ON_EXIT 32 +#define RUN_WAIT_AFTER_CLEAN 64 /** * Convenience functions that encapsulate a sequence of |