From: Chris Hanson Date: Wed, 18 Nov 1998 03:57:47 +0000 (+0000) Subject: Eliminate another file error in prompting. X-Git-Tag: 20090517-FFI~4714 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=37cc2a86f1adb4364c25d5e8224a75956953fd84;p=mit-scheme.git Eliminate another file error in prompting. --- diff --git a/v7/src/edwin/unix.scm b/v7/src/edwin/unix.scm index 341c926f4..f51144e97 100644 --- a/v7/src/edwin/unix.scm +++ b/v7/src/edwin/unix.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: unix.scm,v 1.86 1998/11/18 03:40:46 cph Exp $ +;;; $Id: unix.scm,v 1.87 1998/11/18 03:57:47 cph Exp $ ;;; ;;; Copyright (c) 1989-98 Massachusetts Institute of Technology ;;; @@ -305,7 +305,7 @@ Includes the new backup. Must be > 0." type))) (define (os/completion-ignore-filename? filename) - (and (not (file-directory? filename)) + (and (not (file-test-no-errors file-directory? filename)) (there-exists? (ref-variable completion-ignored-extensions) (lambda (extension) (string-suffix? extension filename)))))