From 21856550e357c95d0e572ac8d250c5a65f0524d2 Mon Sep 17 00:00:00 2001
From: "U-SLAVA-DFB8FF805\\Slava" <Slava@slava-dfb8ff805.(none)>
Date: Sat, 22 Nov 2008 02:44:35 -0600
Subject: [PATCH] show doesn't need to print \r\n

---
 core/io/streams/c/c.factor | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 mode change 100644 => 100755 core/io/streams/c/c.factor

diff --git a/core/io/streams/c/c.factor b/core/io/streams/c/c.factor
old mode 100644
new mode 100755
index 1e12d7e956..dd7f3226cb
--- a/core/io/streams/c/c.factor
+++ b/core/io/streams/c/c.factor
@@ -83,6 +83,6 @@ M: c-io-backend (file-appender)
     #! print stuff from contexts where the I/O system would
     #! otherwise not work (tools.deploy.shaker, the I/O
     #! multiplexer thread).
-    "\r\n" append >byte-array
+    "\n" append >byte-array
     stdout-handle fwrite
     stdout-handle fflush ;