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

Dont lower-case completion strings.

This commit is contained in:
Kris Maglione
2008-10-06 22:06:15 +00:00
parent 23199b84d1
commit f4613ec8a8
3 changed files with 11 additions and 6 deletions

View File

@@ -854,7 +854,8 @@ lookup:
catch (e)
{
let message = "Sourcing file: " + file.path + ": " + e;
Components.utils.reportError(message);
if (Components.utils.reportError)
Components.utils.reportError(message);
if (!silent)
liberator.echoerr(message);
}