From 7779eb8e60044a8a143293958f21a1b8cf71d34d Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Mon, 9 Dec 2013 18:32:09 -0500
Subject: [PATCH] *removed unnecessary logic for keeping carriage returns to
 avoid having an empty line at the top of the console after clearing console

---
 pd/src/s_print.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pd/src/s_print.c b/pd/src/s_print.c
index 3aacd188b..de58e5f0a 100644
--- a/pd/src/s_print.c
+++ b/pd/src/s_print.c
@@ -23,9 +23,9 @@ static void dopost(const char *s)
     {
         char upbuf[MAXPDSTRING];
         int ptin = 0, ptout = 0, len = strlen(s);
-        static int heldcr = 0;
-        if (heldcr)
-            upbuf[ptout++] = '\n', heldcr = 0;
+        //static int heldcr = 0;
+        //if (heldcr)
+        //    upbuf[ptout++] = '\n', heldcr = 0;
         for (; ptin < len && ptout < MAXPDSTRING-3;
             ptin++, ptout++)
         {
@@ -34,8 +34,8 @@ static void dopost(const char *s)
                 upbuf[ptout++] = '\\';
             upbuf[ptout] = s[ptin];
         }
-        if (ptout && upbuf[ptout-1] == '\n')
-            upbuf[--ptout] = 0, heldcr = 1;
+        //if (ptout && upbuf[ptout-1] == '\n')
+        //    upbuf[--ptout] = 0, heldcr = 1;
         upbuf[ptout] = 0;
         sys_vgui("pdtk_post {%s}\n", upbuf);
     }
-- 
GitLab