From 6542ece91a783e999f61cc51cbe18c8b4c96a36c Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Thu, 1 Jul 1999 09:11:21 +0000 Subject: Function calling in filters works - somehow. Calling syntax is currently very ugly, beware. Variables are not really local - that needs to be fixed. --- filter/filter.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'filter/filter.c') diff --git a/filter/filter.c b/filter/filter.c index 7afae43..c98440c 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -250,6 +250,10 @@ interpret(struct f_inst *what) default: bug( "Unknown prefix to conversion\n" ); } break; + case 'ca': /* CALL */ + ONEARG; + res = interpret(what->a2.p); + break; default: bug( "Unknown instruction %d (%c)", what->code, what->code & 0xff); } -- cgit v1.2.3