From 2dde9b13a68382c50c70f531a4439d3db80f2c32 Mon Sep 17 00:00:00 2001 From: felix Date: Sun, 19 Apr 2020 12:20:19 +0200 Subject: [PATCH] only enable call signature check for known procedures during analysis for non-global bindings --- core.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/core.scm b/core.scm index 272a1f77..584c3453 100644 --- a/core.scm +++ b/core.scm @@ -2126,6 +2126,7 @@ (val (db-get db name 'value))) (when (and first-analysis val + (not (db-get db name 'global)) (not (db-get db name 'unknown)) (eq? '##core#lambda (node-class val)) (not (llist-match? (third (node-parameters val)) -- 2.21.0