From: Stephen Adams Date: Wed, 2 Nov 1994 19:36:59 +0000 (+0000) Subject: DEBUGGER-START-NEW-SCREEN? is now default true for all systems. X-Git-Tag: 20090517-FFI~7037 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e1195f141c58020c9e5b9f2080544b92cb2f3190;p=mit-scheme.git DEBUGGER-START-NEW-SCREEN? is now default true for all systems. (This does the right thing for consoles, Xterms and Win32 screens.) --- diff --git a/v7/src/edwin/debug.scm b/v7/src/edwin/debug.scm index 48049202e..79f8b75b6 100644 --- a/v7/src/edwin/debug.scm +++ b/v7/src/edwin/debug.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: debug.scm,v 1.32 1994/10/25 01:46:12 adams Exp $ +;;; $Id: debug.scm,v 1.33 1994/11/02 19:36:59 adams Exp $ ;;; ;;; Copyright (c) 1992-94 Massachusetts Institute of Technology ;;; @@ -903,9 +903,7 @@ Set this variable to #F to disable this abbreviation." "#T means start a new-screen whenever the debugger is invoked. #F means continue in same screen. 'ASK means ask user whether to start new-screen." - (if (equal? microcode-id/operating-system-name "unix") - #T - #F) + #T boolean-or-ask?) (define-variable debugger-hide-system-code?