From 085736da2787fbbb05a58ba754ab257c87149c4b Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Wed, 13 Mar 2024 17:20:49 +0000 Subject: [PATCH] Fix indentation --- tsv2vcard.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsv2vcard.scm b/tsv2vcard.scm index 4ae665d..d9f0a42 100644 --- a/tsv2vcard.scm +++ b/tsv2vcard.scm @@ -4,8 +4,8 @@ (define (tsv-fields line) (reverse (let iter ((len (string-length line)) - (rem (string-copy line)) - (idx 0) + (rem (string-copy line)) + (idx 0) (res '())) (cond ((>= idx len) (cons rem res)) ((char=? #\tab (string-ref rem idx))