From c6fd0f880351b558110bacb7c2ace7feba2009fc Mon Sep 17 00:00:00 2001 From: ceri Date: Wed, 12 Nov 2003 23:08:23 +0000 Subject: [PATCH] Attempt to save the last dregs of emacs users' sanity by saving the contents of the PR when an interrupt is received during the editor session. This stops the use of ^G from deleting a filled PR from underneath the user. PR: bin/59201 Submitted by: Heikki Suonsivu MFC After: 2 weeks --- gnu/usr.bin/send-pr/send-pr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh index f80a0a4a4f0..ea6e98ac9e8 100644 --- a/gnu/usr.bin/send-pr/send-pr.sh +++ b/gnu/usr.bin/send-pr/send-pr.sh @@ -262,7 +262,7 @@ TEMP=`mktemp -t pf` || exit 1 # Catch some signals. ($xs kludge needed by Sun /bin/sh) xs=0 trap 'rm -f $REF $TEMP; exit $xs' 0 -trap 'echo "$COMMAND: Aborting ..."; rm -f $REF $TEMP; xs=1; exit' 1 2 3 13 15 +trap 'echo "$COMMAND: Aborting ... saving unfinished PR into /tmp/pr.$$"; rm -f $REF ; mv $TEMP /tmp/pr.$$; xs=1; exit' 1 2 3 13 15 # If they told us to use a specific file, then do so. if [ -n "$IN_FILE" ]; then -- 2.45.2