diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-05-12 09:32:10 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-05-12 09:32:10 +0200 |
commit | 0e5623b491cb4158d8055b9c2ee7963fee8c75de (patch) | |
tree | 5ad89f1b5a5c3f3c9d68119b2525f78b721ea8b4 /src/bytecode.c | |
parent | 14e445047918321ee19a87283a1c32df5530f4fb (diff) | |
download | emacs-0e5623b491cb4158d8055b9c2ee7963fee8c75de.tar.gz emacs-0e5623b491cb4158d8055b9c2ee7963fee8c75de.tar.bz2 emacs-0e5623b491cb4158d8055b9c2ee7963fee8c75de.zip |
; * src/bytecode.c (exec_byte_code): Fix white space.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |