1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:27:58 +01:00

fixed xpi generation; made dumpStack() more readable by NOT removing \n

This commit is contained in:
Martin Stubenschrott
2008-11-08 00:34:35 +00:00
parent d51c6cd035
commit e47a592dbb
3 changed files with 7 additions and 5 deletions

View File

@@ -660,7 +660,8 @@ const liberator = (function () //{{{
dumpStack: function (msg)
{
liberator.dump((msg || "") + (new Error()).stack.replace(/.*\n/, ""));
//liberator.dump((msg || "") + (new Error()).stack.replace(/.*\n/, ""));
liberator.dump((msg || "") + (new Error()).stack);
},
eval: function (str)