vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit b86c059584c59fbcf1547b9454099b90fa1d6067
parent be4f21dff00396f6c16a9ceed853a4434a0924b9
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Wed, 24 Jan 2018 20:25:05 +0100

build: abort configure scripts upon interrupts

Fix #607

Diffstat:
Mconfigure | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure b/configure @@ -190,7 +190,8 @@ tmpo="./conf$$-$PPID-$i.o" test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc" done set +C -trap 'rm -f "$tmpc" "$tmpo"' EXIT INT QUIT TERM HUP +trap 'rm -f "$tmpc" "$tmpo"' EXIT QUIT TERM HUP +trap 'rm -f "$tmpc" "$tmpo" && echo && fail "$0: interrupted"' INT # # Find a C compiler to use