From: Chris Hanson Date: Sat, 8 Oct 1994 08:57:28 +0000 (+0000) Subject: Use new NO-ERROR optional argument to LOAD-OPTION to prevent errors if X-Git-Tag: 20090517-FFI~7081 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=41c353bbf06666c0a4c9c41f021dfdaf2f6201f8;p=mit-scheme.git Use new NO-ERROR optional argument to LOAD-OPTION to prevent errors if the KRYPT option is not present. --- diff --git a/v7/src/edwin/edwin.ldr b/v7/src/edwin/edwin.ldr index 2a848c125..fa742b035 100644 --- a/v7/src/edwin/edwin.ldr +++ b/v7/src/edwin/edwin.ldr @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: edwin.ldr,v 1.48 1994/03/08 20:32:45 cph Exp $ +$Id: edwin.ldr,v 1.49 1994/10/08 08:57:28 cph Exp $ Copyright (c) 1989-94 Massachusetts Institute of Technology @@ -80,7 +80,7 @@ MIT in each case. |# (if (eq? (lookup 'OS-TYPE) 'UNIX) (begin - (load-option 'KRYPT) + (load-option 'KRYPT #t) ;no error if not present. (load-option 'SUBPROCESS))) (load-option 'RB-TREE) (load-option 'HASH-TABLE)