AboutSummaryRefsLogTreeCommitDiffStats
path: root/vixie.scm
diff options
context:
space:
mode:
authordale_mellor <dale_mellor>2003-07-05 12:13:19 +0000
committerdale_mellor <dale_mellor>2003-07-05 12:13:19 +0000
commit62b040336328d99ade41776bd52b1d7cd7298629 (patch)
tree501d06d9af92555884a0820214a2634bde8a36e9 /vixie.scm
parent3725aedd02d9b24c1239610066dd62387ef4d5a9 (diff)
downloadmcron-62b040336328d99ade41776bd52b1d7cd7298629.tar.gz
mcron-62b040336328d99ade41776bd52b1d7cd7298629.tar.bz2
mcron-62b040336328d99ade41776bd52b1d7cd7298629.zip
Disabled installation of cron, crontab by default. Fixed up all information files to reflect this.0.99.1
Diffstat (limited to 'vixie.scm')
-rw-r--r--vixie.scm9
1 files changed, 4 insertions, 5 deletions
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 ""))