From: Stefan Kangas Date: Thu, 12 May 2022 07:32:10 +0000 (+0200) Subject: ; * src/bytecode.c (exec_byte_code): Fix white space. X-Git-Tag: emacs-29.0.90~1910^2~763 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0e5623b491cb4158d8055b9c2ee7963fee8c75de;p=emacs.git ; * src/bytecode.c (exec_byte_code): Fix white space. --- diff --git a/src/bytecode.c b/src/bytecode.c index 74b7d16affd..a0bcbb48481 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1209,7 +1209,7 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, Lisp_Object v2 = POP; Lisp_Object v1 = TOP; if (FIXNUMP (v1) && FIXNUMP (v2)) - TOP = BASE_EQ(v1, v2) ? Qt : Qnil; + TOP = BASE_EQ (v1, v2) ? Qt : Qnil; else TOP = arithcompare (v1, v2, ARITH_EQUAL); NEXT;