From fef3a6321eec1de83dfd2f6279b8172fa5456289 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 3 Apr 2000 16:55:33 +0000 Subject: [PATCH] POP-UP-BUFFER: Clarify derivation of CURRENT-WINDOW-OK?. --- v7/src/edwin/wincom.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/v7/src/edwin/wincom.scm b/v7/src/edwin/wincom.scm index c1023e134..df09158b2 100644 --- a/v7/src/edwin/wincom.scm +++ b/v7/src/edwin/wincom.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: wincom.scm,v 1.123 1999/03/17 03:22:45 cph Exp $ +;;; $Id: wincom.scm,v 1.124 2000/04/03 16:55:33 cph Exp $ ;;; ;;; Copyright (c) 1987, 1989-1999 Massachusetts Institute of Technology ;;; @@ -479,8 +479,9 @@ Also kills any pop up window it may have created." ;; as the value. Otherwise the value is #f. (let ((select? (and (not (default-object? select?)) select?)) (current-window-ok? - (not (and (not (default-object? not-current-window?)) - not-current-window?)))) + (if (default-object? not-current-window?) + #t + (not not-current-window?)))) (define (pop-up-window window) (let ((window (window-split-vertically! window #f))) -- 2.25.1