]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/comp.c (emit_lisp_obj_rval): Make use of NILP.
authorAndrea Corallo <akrl@sdf.org>
Tue, 25 Jan 2022 21:15:51 +0000 (22:15 +0100)
committerAndrea Corallo <akrl@sdf.org>
Tue, 25 Jan 2022 21:15:51 +0000 (22:15 +0100)
src/comp.c

index d8fe80df3a68effdeb18c27b6be4f4600a88afdf..d755df802f7ef2acada5205f64e43fcd66e321c5 100644 (file)
@@ -1720,7 +1720,7 @@ emit_lisp_obj_rval (Lisp_Object obj)
   emit_comment (format_string ("const lisp obj: %s",
                               SSDATA (Fprin1_to_string (obj, Qnil))));
 
-  if (EQ (obj, Qnil))
+  if (NILP (obj))
     {
       gcc_jit_rvalue *n;
       n = emit_rvalue_from_lisp_word ((Lisp_Word) iQnil);