From: ceriel Date: Tue, 15 Aug 1995 09:10:39 +0000 (+0000) Subject: Don't use SIGEMT; it is not portable X-Git-Tag: release-5-5~99 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f8cbcf1b4fd63b5dcb0e150203a188f549c79df2;p=ack.git Don't use SIGEMT; it is not portable --- diff --git a/util/grind/commands.g b/util/grind/commands.g index d2afb7b03..2fbabebf0 100644 --- a/util/grind/commands.g +++ b/util/grind/commands.g @@ -646,7 +646,7 @@ catch_del() { signal(SIGINT, catch_del); if (! disable_intr) { - signal_child(SIGEMT); + signal_child(7); child_interrupted = 1; } interrupted = 1;