Changed hotkey handling for groups and bookmarks; small pathfinding fixes.

This was SVN commit r809.
This commit is contained in:
MarkT
2004-07-23 10:56:52 +00:00
parent 1a33a9afc3
commit befae8627d
24 changed files with 391 additions and 175 deletions
+3 -3
View File
@@ -312,13 +312,13 @@ void ScriptingHost::ErrorReporter(JSContext * context, const char * message, JSE
if (g_Console)
{
g_Console->InsertMessage( L"%hs (%d)", report->filename, report->lineno );
if (message)
{
g_Console->InsertMessage( L"%hs", message );
g_Console->InsertMessage( L"JavaScript Error (%hs, line %d): %hs", report->filename, report->lineno, message );
}
else
g_Console->InsertMessage( L"No error message available" );
g_Console->InsertMessage( L"JavaScript Error (%hs, line %d): No error message available", report->filename, report->lineno );
}
if (report->filename != NULL)