From: Andrea Corallo Date: Sun, 22 Sep 2019 14:11:48 +0000 (+0200) Subject: fix nomenclature into declare_function X-Git-Tag: emacs-28.0.90~2727^2~1127 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=772357698a226cdbf123d04d58573b79fd8814a2;p=emacs.git fix nomenclature into declare_function --- 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));