aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2022-01-01 15:33:27 +0100
committerMattias EngdegÄrd2022-01-24 11:41:46 +0100
commitd05f387407858672ff0d10b963dbdeaf2a9163e0 (patch)
treeb6850777633a0986e8968ce41147e132de88f7c0 /src/bytecode.c
parent7392f2dc4102fcc5bc4e8a9752db589f75ab9f52 (diff)
downloademacs-d05f387407858672ff0d10b963dbdeaf2a9163e0.tar.gz
emacs-d05f387407858672ff0d10b963dbdeaf2a9163e0.zip
; * src/bytecode.c (exec_byte_code): Cosmetic improvement
Implement point_max in the same way as point_min.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c8
1 files changed, 2 insertions, 6 deletions
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,
1212 NEXT; 1212 NEXT;
1213 1213
1214 CASE (Bpoint_max): 1214 CASE (Bpoint_max):
1215 { 1215 PUSH (make_fixed_natnum (ZV));
1216 Lisp_Object v1; 1216 NEXT;
1217 XSETFASTINT (v1, ZV);
1218 PUSH (v1);
1219 NEXT;
1220 }
1221 1217
1222 CASE (Bpoint_min): 1218 CASE (Bpoint_min):
1223 PUSH (make_fixed_natnum (BEGV)); 1219 PUSH (make_fixed_natnum (BEGV));