Jeff King wrote: > On Thu, Nov 11, 2010 at 10:32:30PM -0600, Jonathan Nieder wrote: >> Subject: SIGPIPE and other fatal signals should default to SIG_DFL >> >> The intuitive behavior when a git command receives a fatal >> signal is for it to die. [...] > Do we need to have it in every command? Is calling git-foo deprecated > enough that we can just put it in git.c? > > I guess there are still a few commands that get installed explicitly in > .../bin (upload-pack, for example). They would need a separate one. > Perhaps it doesn't hurt to just put it in all of the non-builtins as you > did. It's not that big a maintenance issue. Okay. Here's a hunk I forgot to add. The next challenge is how to test this mess. :) diff --git a/cache.h b/cache.h index d85ce86..8088e26 100644 --- a/cache.h +++ b/cache.h @@ -5,6 +5,7 @@ #include "strbuf.h" #include "hash.h" #include "advice.h" +#include "sigchain.h" #include SHA1_HEADER #ifndef git_SHA_CTX -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html