NOT PART OF SEAMONKEY BUILD - removed misplaced semi-colon added by toshok on 6 Sep 1999 which had converted a conditional block into a non-conditional block and made the debugger completely non functional

This commit is contained in:
jband%netscape.com 2000-02-19 02:34:05 +00:00
Родитель e63cf5ca3d
Коммит 3041f6ac4e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -618,7 +618,7 @@ GetClosestLine(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rva
JSD_LockScriptSubsystem(data->jsdcTarget);
active = JSD_IsActiveScript(data->jsdcTarget, jsdscript);
JSD_UnlockScriptSubsystem(data->jsdcTarget);
if(! active );
if(! active )
{
JS_ReportError(cx, "GetClosestLine passed inactive script");
return JS_FALSE;