]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/comp.c (declare_function): fix missing NILP.
authorAndrea Corallo <akrl@sdf.org>
Sat, 25 Apr 2020 15:50:50 +0000 (16:50 +0100)
committerAndrea Corallo <akrl@sdf.org>
Sat, 25 Apr 2020 18:55:39 +0000 (19:55 +0100)
src/comp.c

index 2f59164b770aaf3727924e06b20c75111d2fa221..e95ab51cb56ff7c77e54911455c5fa081954fc72 100644 (file)
@@ -3016,7 +3016,7 @@ declare_function (Lisp_Object func)
   gcc_jit_function *gcc_func;
   char *c_name = SSDATA (CALL1I (comp-func-c-name, func));
   Lisp_Object args = CALL1I (comp-func-args, func);
-  bool nargs = (CALL1I (comp-nargs-p, args));
+  bool nargs = !NILP (CALL1I (comp-nargs-p, args));
   USE_SAFE_ALLOCA;
 
   if (!nargs)