From fd9fccff42bf7af3d5cbd25ed02b24722bf9b3b6 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 30 Sep 2016 03:15:49 -0400 Subject: [PATCH] Separate index sections --- scripts/alphabetize.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/alphabetize.scm b/scripts/alphabetize.scm index e5bf9cef..0a9ec262 100644 --- a/scripts/alphabetize.scm +++ b/scripts/alphabetize.scm @@ -20,6 +20,8 @@ (when (> (string-length line) 1) (when (not (eq? last-alpha (string-ref line 0))) (set! last-alpha (string-ref line 0)) + (newline) + (display "- - -") (newline)) (display (substring line 1 (string-length line))) )