Version check breaks HTML dialogs.

This commit is contained in:
beard%netscape.com 1998-08-05 05:25:12 +00:00
Родитель 446cb50e92
Коммит eb374adc87
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -163,7 +163,7 @@ WellTerminated(JSContext *cx, JSTokenStream *ts, JSTokenType lastExprType)
if (tt != TOK_EOF && tt != TOK_EOL && tt != TOK_SEMI && tt != TOK_RC) { if (tt != TOK_EOF && tt != TOK_EOL && tt != TOK_SEMI && tt != TOK_RC) {
#if JS_HAS_LEXICAL_CLOSURE #if JS_HAS_LEXICAL_CLOSURE
if ((tt == TOK_FUNCTION || lastExprType == TOK_FUNCTION) && if ((tt == TOK_FUNCTION || lastExprType == TOK_FUNCTION) &&
(cx->version < JSVERSION_1_2) && (cx->version >= JSVERSION_1_0)) { cx->version < JSVERSION_1_2) {
return JS_TRUE; return JS_TRUE;
} }
#endif #endif