]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/bytecode.c (exec_byte_code): Fix white space.
authorStefan Kangas <stefan@marxist.se>
Thu, 12 May 2022 07:32:10 +0000 (09:32 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 12 May 2022 07:32:10 +0000 (09:32 +0200)
src/bytecode.c

index 74b7d16affd23cb903ea7b357aac730a1f059480..a0bcbb48481791ab2d8c6281fe70e451e8fab23e 100644 (file)
@@ -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;