expr: don't allow "none" in LookupModIndex

LookupModMask handles this before calling LookupModIndex, and the only
other user in symbols.c doesn't handle this return value at all.

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2012-10-04 12:27:06 +02:00
parent 239a5be10e
commit 1401b0fb5e
1 changed files with 0 additions and 6 deletions

View File

@ -86,12 +86,6 @@ LookupModIndex(struct xkb_context *ctx, const void *priv, xkb_atom_t field,
enum expr_value_type type, xkb_mod_index_t *val_rtrn)
{
const char *name = xkb_atom_text(ctx, field);
if (istreq(name, "none")) {
*val_rtrn = XKB_MOD_INVALID;
return true;
}
*val_rtrn = ModNameToIndex(name);
return (*val_rtrn != XKB_MOD_INVALID);
}