1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Use CONFIG_ECMASCRIPT_SMJS in favour of CONFIG_SPIDERMONKEY, specificity!

This commit is contained in:
Jonas Fonseca 2006-01-20 15:56:40 +01:00 committed by Jonas Fonseca
parent dcc07a7f68
commit 4570c4976e

View File

@ -26,7 +26,7 @@
#ifdef CONFIG_ECMASCRIPT_SEE
#include "ecmascript/see.h"
#elif defined(CONFIG_SPIDERMONKEY)
#elif defined(CONFIG_ECMASCRIPT_SMJS)
#include "ecmascript/spidermonkey.h"
#endif
@ -142,7 +142,7 @@ ecmascript_timeout_dialog(struct terminal *term, int max_exec_time)
static struct module *ecmascript_modules[] = {
#ifdef CONFIG_ECMASCRIPT_SEE
&see_module,
#elif defined(CONFIG_SPIDERMONKEY)
#elif defined(CONFIG_ECMASCRIPT_SMJS)
&spidermonkey_module,
#endif
NULL,