From 60f66bfb42c441cdc1eca837c49ae226fa73cc54 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 3 Aug 2018 11:36:45 -0400 Subject: [PATCH] modern.out: Don't write an extra newline to the end of files. --- extra/modern/out/out.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/modern/out/out.factor b/extra/modern/out/out.factor index f819aedd57..775e6e55c4 100644 --- a/extra/modern/out/out.factor +++ b/extra/modern/out/out.factor @@ -50,7 +50,7 @@ DEFER: map-literals [ write-literal ] with-string-writer ; inline : write-modern-path ( seq path -- ) - utf8 [ write-literal nl ] with-file-writer ; inline + utf8 [ write-literal ] with-file-writer ; inline : write-modern-vocab ( seq vocab -- ) vocab-source-path write-modern-path ; inline