diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 10:20:05 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-01-03 11:02:11 -0800 |
commit | e4cba31313b44e40efcc0c260a33c3ec83e4b772 (patch) | |
tree | f88f0604ed180b6a0cccdcfd48da85fac30b9eac /expr.c | |
parent | 3e486c4578f3f6a81fc0f9afba6551dfa8c7b63b (diff) |
Stop building more unused functions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'expr.c')
-rw-r--r-- | expr.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -208,6 +208,7 @@ RadioLookup(XPointer priv, return True; } +#if 0 static int TableLookup(XPointer priv, Atom elem, Atom field, unsigned type, ExprResult * val_rtrn) @@ -233,6 +234,7 @@ TableLookup(XPointer priv, priv = (XPointer) tbl->entries; return SimpleLookup(priv, (Atom) None, field, type, val_rtrn); } +#endif static LookupEntry modIndexNames[] = { {"shift", ShiftMapIndex}, @@ -285,6 +287,7 @@ LookupModMask(XPointer priv, return True; } +#if 0 int ExprResolveModIndex(ExprDef * expr, ExprResult * val_rtrn, @@ -361,6 +364,7 @@ ExprResolveModIndex(ExprDef * expr, } return ok; } +#endif int ExprResolveModMask(ExprDef * expr, |