1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-30 01:55:30 +00:00

LUA: use long instead of int with OPT_LONG.

(cherry picked from commit bd38ed5b17)
This commit is contained in:
Laurent MONIN 2006-06-26 17:55:42 +02:00 committed by Kalle Olavi Niemitalo
parent e4894d0414
commit 9dab353f15

View File

@ -508,13 +508,15 @@ l_set_option(LS)
option_types[opt->type].set(opt, (unsigned char *) (&value)); option_types[opt->type].set(opt, (unsigned char *) (&value));
break; break;
} }
case OPT_INT: case OPT_INT:
{
int value = lua_tonumber(S, 2);
option_types[opt->type].set(opt, (unsigned char *) (&value));
break;
}
case OPT_LONG: case OPT_LONG:
{ {
int value; long value = lua_tonumber(S, 2);
value = lua_tonumber(S, 2);
option_types[opt->type].set(opt, (unsigned char *) (&value)); option_types[opt->type].set(opt, (unsigned char *) (&value));
break; break;
} }