1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-01 17:42:25 +01:00

some trivial formatting fixes

This commit is contained in:
Doug Kearns
2007-08-14 15:24:49 +00:00
parent 96b3fe093a
commit 9f79ec4d71
9 changed files with 47 additions and 26 deletions

View File

@@ -326,9 +326,14 @@ const vimperator = (function() //{{{
for (var i in object)
{
var value;
try {
try
{
var value = object[i];
} catch (e) { value = '' }
}
catch (e)
{
value = '';
}
string += i + ': ' + value + '\n';
}
@@ -594,7 +599,7 @@ const vimperator = (function() //{{{
vimperator.source(file.path, false);
});
}
catch(e)
catch (e)
{
// thrown if directory does not exist
//vimperator.log("Error sourcing plugin directory: " + e);