From 5145dd3aa0c02c9fc496d1432fc4410674206e1d Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 20 Feb 2017 00:05:31 -0800 Subject: Import Upstream version 3a2 --- htmlform.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'htmlform.scm') diff --git a/htmlform.scm b/htmlform.scm index d659aeb..143eccc 100644 --- a/htmlform.scm +++ b/htmlform.scm @@ -80,11 +80,11 @@ ;;displaying the page with this tag, Netscape or IE browsers will fetch ;;and display @2. Otherwise, @1 seconds after displaying the page with ;;this tag, Netscape or IE browsers will fetch and redisplay this page. -(define (html:meta-refresh delay . uri) +(define (html:meta-refresh dly . uri) (if (null? uri) - (sprintf #f "\\n" delay) + (sprintf #f "\\n" dly) (sprintf #f "\\n" - delay (car uri)))) + dly (car uri)))) ;;@args title backlink tags ... ;;@args title backlink @@ -102,7 +102,7 @@ (sprintf #f "\\n") (sprintf #f "%s" (html:comment "HTML by SLIB" - "http://swissnet.ai.mit.edu/~jaffer/SLIB")) + "http://swiss.csail.mit.edu/~jaffer/SLIB")) (sprintf #f " \\n %s\\n %s\\n \\n" (html:plain title) (apply string-append args)) (if (and backlink (substring-ci? "

" backlink)) -- cgit v1.2.3