From e65ebf1937e701e4569934999951ab736812e060 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Sun, 22 Sep 2013 04:07:25 -0400
Subject: [PATCH] fixed regression in formatting tooltip text

---
 pd/src/pd.tk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pd/src/pd.tk b/pd/src/pd.tk
index d6ee8fee6..2b80e383b 100644
--- a/pd/src/pd.tk
+++ b/pd/src/pd.tk
@@ -8931,8 +8931,8 @@ proc pdtk_gettip { w item xletno name helpname dir } {
 		}
     }
     # make Pd's comma atoms look pretty
-    regsub -all { \\,} $msg {,} msg
-    regsub -all {\n} $msg " " msg
+    regsub -all {\\,} $msg {,} msg
+    regsub -all {\n} $msg "" msg
     #regsub -all {\n\\,} $msg ",\n" msg
     pdtk_tip $w 0 1 $msg
 }
-- 
GitLab