summaryrefslogtreecommitdiff
path: root/filter/filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter.c')
-rw-r--r--filter/filter.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/filter/filter.c b/filter/filter.c
index f81f5cfe..28603f27 100644
--- a/filter/filter.c
+++ b/filter/filter.c
@@ -637,10 +637,6 @@ interpret(struct f_inst *what)
for ( ; what; what = what->next) {
res.type = T_VOID;
switch(what->fi_code) {
- case FI_COMMA:
- TWOARGS;
- break;
-
/* Binary operators */
case FI_ADD:
TWOARGS_C;
@@ -1607,8 +1603,7 @@ i_same(struct f_inst *f1, struct f_inst *f2)
return 1;
switch(f1->fi_code) {
- case FI_COMMA: /* fall through */
- case FI_ADD:
+ case FI_ADD: /* fall through */
case FI_SUBTRACT:
case FI_MULTIPLY:
case FI_DIVIDE: