From: Chris Hanson Date: Mon, 7 May 2001 18:01:40 +0000 (+0000) Subject: VERIFY-FINAL-VALUE is always executed in a context that handles X-Git-Tag: 20090517-FFI~2849 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=fd16abdd4d001dea8b373f9eaea42ac238470bb8;p=mit-scheme.git VERIFY-FINAL-VALUE is always executed in a context that handles errors, so there's no need for us to do this. --- diff --git a/v7/src/imail/imail-top.scm b/v7/src/imail/imail-top.scm index 19674ea66..097628d48 100644 --- a/v7/src/imail/imail-top.scm +++ b/v7/src/imail/imail-top.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: imail-top.scm,v 1.236 2001/04/15 20:58:44 cph Exp $ +;;; $Id: imail-top.scm,v 1.237 2001/05/07 18:01:40 cph Exp $ ;;; ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology ;;; @@ -1644,12 +1644,7 @@ Negative argument means search in reverse." (lambda (string) (url-string-completions string imail-get-default-url)) (lambda (string) - (let ((url - (ignore-errors - (lambda () - (imail-parse-partial-url string))))) - (and (url? url) - (url-exists? url)))) + (url-exists? (imail-parse-partial-url string))) 'DEFAULT-TYPE 'INSERTED-DEFAULT options)))