From: Andrea Corallo Date: Tue, 25 Jan 2022 21:15:51 +0000 (+0100) Subject: * src/comp.c (emit_lisp_obj_rval): Make use of NILP. X-Git-Tag: emacs-29.0.90~2748 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=50fea24b8b64dfcdd7beda87d3fab53711173eb8;p=emacs.git * src/comp.c (emit_lisp_obj_rval): Make use of NILP. --- diff --git a/src/comp.c b/src/comp.c index d8fe80df3a6..d755df802f7 100644 --- a/src/comp.c +++ b/src/comp.c @@ -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);