From: Mattias EngdegÄrd Date: Sat, 1 Jan 2022 14:33:27 +0000 (+0100) Subject: ; * src/bytecode.c (exec_byte_code): Cosmetic improvement X-Git-Tag: emacs-29.0.90~2810 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d05f387407858672ff0d10b963dbdeaf2a9163e0;p=emacs.git ; * src/bytecode.c (exec_byte_code): Cosmetic improvement Implement point_max in the same way as point_min. --- diff --git a/src/bytecode.c b/src/bytecode.c index 00db29b0140..7a9966e20ef 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1212,12 +1212,8 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, NEXT; CASE (Bpoint_max): - { - Lisp_Object v1; - XSETFASTINT (v1, ZV); - PUSH (v1); - NEXT; - } + PUSH (make_fixed_natnum (ZV)); + NEXT; CASE (Bpoint_min): PUSH (make_fixed_natnum (BEGV));