From 772357698a226cdbf123d04d58573b79fd8814a2 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 22 Sep 2019 16:11:48 +0200 Subject: [PATCH] fix nomenclature into declare_function --- src/comp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comp.c b/src/comp.c index b25013d65ad..2abf4d2a2bd 100644 --- a/src/comp.c +++ b/src/comp.c @@ -2635,10 +2635,10 @@ declare_function (Lisp_Object func) gcc_jit_function *gcc_func; char *c_name = SSDATA (FUNCALL1 (comp-func-c-func-name, func)); Lisp_Object args = FUNCALL1 (comp-func-args, func); - bool ncall = (FUNCALL1 (comp-nargs-p, args)); + bool nargs = (FUNCALL1 (comp-nargs-p, args)); USE_SAFE_ALLOCA; - if (!ncall) + if (!nargs) { EMACS_INT max_args = XFIXNUM (FUNCALL1 (comp-args-max, args)); gcc_jit_type **type = SAFE_ALLOCA (max_args * sizeof (*type)); -- 2.39.5