aboutsummaryrefslogtreecommitdiffstats
path: root/htmlform.scm
diff options
context:
space:
mode:
Diffstat (limited to 'htmlform.scm')
-rw-r--r--htmlform.scm8
1 files changed, 4 insertions, 4 deletions
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<META HTTP-EQUIV=\"Refresh\" CONTENT=\"%d\">" delay)
+ (sprintf #f "\\n<META HTTP-EQUIV=\"Refresh\" CONTENT=\"%d\">" dly)
(sprintf #f "\\n<META HTTP-EQUIV=\"Refresh\" CONTENT=\"%d;URL=%s\">"
- delay (car uri))))
+ dly (car uri))))
;;@args title backlink tags ...
;;@args title backlink
@@ -102,7 +102,7 @@
(sprintf #f "<HTML>\\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 " <HEAD>\\n <TITLE>%s</TITLE>\\n %s\\n </HEAD>\\n"
(html:plain title) (apply string-append args))
(if (and backlink (substring-ci? "<H1>" backlink))