From 790cb066fe08a0de7aec3fd289bb1d423a77655f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 26 Oct 1993 18:42:29 +0000 Subject: [PATCH] Can't extract restart from condition, it's often not the right restart. --- v7/src/edwin/comred.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/edwin/comred.scm b/v7/src/edwin/comred.scm index 2020b21eb..a19b2f4a0 100644 --- a/v7/src/edwin/comred.scm +++ b/v7/src/edwin/comred.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: comred.scm,v 1.108 1993/10/26 00:37:56 cph Exp $ +;;; $Id: comred.scm,v 1.109 1993/10/26 18:42:29 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989-93 Massachusetts Institute of Technology ;;; @@ -140,7 +140,7 @@ (lambda (restart) restart (thunk)))))) (define (return-to-command-loop condition) - (let ((restart (find-restart 'ABORT-EDITOR-COMMAND condition))) + (let ((restart (find-restart 'ABORT-EDITOR-COMMAND))) (if (not restart) (error "Missing ABORT-EDITOR-COMMAND restart.")) (keyboard-macro-disable) (invoke-restart restart -- 2.25.1