From: ceriel Date: Thu, 31 Mar 1988 16:09:53 +0000 (+0000) Subject: identifiers may not contain two consecutive underscores, and a fix X-Git-Tag: release-5-5~3526 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2be8437d73575961beda0910fe154f842f32ca82;p=ack.git identifiers may not contain two consecutive underscores, and a fix --- diff --git a/lang/m2/comp/walk.c b/lang/m2/comp/walk.c index a8b0b0982..bc7fb0de9 100644 --- a/lang/m2/comp/walk.c +++ b/lang/m2/comp/walk.c @@ -229,9 +229,9 @@ WalkProcedure(procedure) /* Generate code for this procedure */ C_pro_narg(procscope->sc_name); + TmpOpen(procscope); DoPriority(); DoFilename(); /* ??? only when this procedure is exported? */ - TmpOpen(procscope); func_type = tp = RemoveEqual(ResultType(procedure->df_type));