]> git.eshelyaron.com Git - emacs.git/commitdiff
fix nomenclature into declare_function
authorAndrea Corallo <akrl@sdf.org>
Sun, 22 Sep 2019 14:11:48 +0000 (16:11 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:37:52 +0000 (11:37 +0100)
src/comp.c

index b25013d65ad8e3ce1bd826d54044b8140953ce09..2abf4d2a2bd49f93481a397e4f2621d05961ed3a 100644 (file)
@@ -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));