From: Chris Hanson Date: Thu, 10 May 2001 02:11:44 +0000 (+0000) Subject: Fix thinko in previous fix. X-Git-Tag: 20090517-FFI~2832 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=539d12018bac8e7e3634201a6d9b6d898f34d469;p=mit-scheme.git Fix thinko in previous fix. --- diff --git a/v7/src/edwin/prompt.scm b/v7/src/edwin/prompt.scm index 1f4db8961..a09132862 100644 --- a/v7/src/edwin/prompt.scm +++ b/v7/src/edwin/prompt.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: prompt.scm,v 1.195 2001/05/09 18:10:21 cph Exp $ +;;; $Id: prompt.scm,v 1.196 2001/05/10 02:11:44 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989-2001 Massachusetts Institute of Technology ;;; @@ -272,7 +272,8 @@ (string-table-completions string-table string)) (lambda (string) (let ((default (list 'DEFAULT))) - (not (eq? (string-table-get string-table string default) + (not (eq? (string-table-get string-table string + (lambda (index) index default)) default)))) 'CASE-INSENSITIVE-COMPLETION? (string-table-ci? string-table) options))