From 51840817fcfc40bcf47d1b9e351ac196b4f5e734 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 13 Dec 2008 01:51:21 +1100 Subject: [PATCH] don't use FORCE_SINGELINE with echomsg() --- common/content/liberator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/liberator.js b/common/content/liberator.js index 5fc9b1aa..4ff57819 100644 --- a/common/content/liberator.js +++ b/common/content/liberator.js @@ -734,7 +734,7 @@ const liberator = (function () //{{{ // TODO: add proper level constants echomsg: function (str, verbosity, flags) { - flags |= commandline.APPEND_TO_MESSAGES | commandline.FORCE_SINGLELINE; + flags |= commandline.APPEND_TO_MESSAGES; //| commandline.FORCE_SINGLELINE; // TODO: was there a reason for this? --djk if (verbosity == null) verbosity = 0; // verbosity level is exclusionary