From cbc4e10f30967fdb8f9b2a2ddc0b89d2f835c6e4 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Mon, 24 Sep 2007 05:22:29 +0000 Subject: [PATCH] Fix typo in FIND-HEADER: the local variable is named STRING, not TEXT. --- v7/src/edwin/nntp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/edwin/nntp.scm b/v7/src/edwin/nntp.scm index 408c8395a..049c3c97d 100644 --- a/v7/src/edwin/nntp.scm +++ b/v7/src/edwin/nntp.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: nntp.scm,v 1.35 2007/09/12 23:36:08 cph Exp $ +$Id: nntp.scm,v 1.36 2007/09/24 05:22:29 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -1128,7 +1128,7 @@ USA. (let ((end* (fix:+ start n))) (if (and (fix:<= end* end) (substring-ci=? text start end* key 0 n)) - (substring-skip-leading-space string end* end) + (substring-skip-leading-space text end* end) (let ((nl (find-next-newline text start end))) (and nl (loop (fix:+ nl 1))))))))) -- 2.25.1