From a89bd16ff78c74513461af3f676d87d4eb9cfd3c Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sat, 31 Dec 2011 20:51:11 +0200 Subject: Remove ancient STREQ, STREQN macros. --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 22f30773..2421aea1 100644 --- a/eval.c +++ b/eval.c @@ -2448,7 +2448,7 @@ match_re: if (t1->stlen > 0) { /* retrieve function definition node */ f = pc->func_body; - if (f != NULL && STREQ(f->vname, t1->stptr)) + if (f != NULL && strcmp(f->vname, t1->stptr) == 0) /* indirect var hasn't been reassigned */ goto func_call; f = lookup(t1->stptr); -- cgit v1.2.3