From fd16abdd4d001dea8b373f9eaea42ac238470bb8 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 7 May 2001 18:01:40 +0000 Subject: [PATCH] VERIFY-FINAL-VALUE is always executed in a context that handles errors, so there's no need for us to do this. --- v7/src/imail/imail-top.scm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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))) -- 2.25.1