From 62b040336328d99ade41776bd52b1d7cd7298629 Mon Sep 17 00:00:00 2001 From: dale_mellor Date: Sat, 5 Jul 2003 12:13:19 +0000 Subject: Disabled installation of cron, crontab by default. Fixed up all information files to reflect this. --- vixie.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'vixie.scm') diff --git a/vixie.scm b/vixie.scm index 2e7df93..5551518 100644 --- a/vixie.scm +++ b/vixie.scm @@ -416,11 +416,10 @@ ((eof-object? line)) ;; If the line ends with \, append the next line. - (do () - ((or (< (string-length line) 1) - (not (char=? (string-ref line - (- (string-length line) 1)) - #\\)))) + (while ((and (>= (string-length line) 1) + (char=? (string-ref line + (- (string-length line) 1)) + #\\))) (let ((next-line (read-line port))) (if (eof-object? next-line) (set! next-line "")) -- cgit v1.2.3