mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 06:17:58 +01:00
Load styles with a chrome security principal. Fix default objects in JS completion. Don't echo during :map <silent>
This commit is contained in:
@@ -798,8 +798,11 @@ lookup:
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
e.echoerr = file.path + ":" + e.lineNumber + ": " + e;
|
||||
throw e;
|
||||
let err = new Error();
|
||||
for (let [k, v] in Iterator(e))
|
||||
err[k] = v;
|
||||
err.echoerr = file.path + ":" + e.lineNumber + ": " + e;
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
else if (/\.css$/.test(filename))
|
||||
|
||||
Reference in New Issue
Block a user