From 3b3ef3c4f0c5f71dc382ac65dfcdcd8086259c17 Mon Sep 17 00:00:00 2001 From: John Pasula Date: Mon, 16 Aug 2010 10:22:33 -0600 Subject: [PATCH] Fix small bug (I think) with name text dump. Removed erroneous new line. --- core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.lua b/core.lua index 35d00df..f681dd0 100644 --- a/core.lua +++ b/core.lua @@ -1943,7 +1943,7 @@ do tinsert(text_table, " "..is_known.."") --Name elseif output == "Name" then - tinsert(text_table, recipe.name.."\n") + tinsert(text_table, recipe.name) end -- Add in all the filter flags -- 1.7.9.5