aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2022-01-01 15:33:27 +0100
committerMattias EngdegÄrd2022-01-11 15:22:48 +0100
commit02ff30bfbb2b7c731c96110af84d2585211125ba (patch)
tree29b4b45caa6b126ae7c391ff5be6ca9487898d78 /src/bytecode.c
parenta2b4058b96ccbb24b2047cab46517a10d7b4b686 (diff)
downloademacs-02ff30bfbb2b7c731c96110af84d2585211125ba.tar.gz
emacs-02ff30bfbb2b7c731c96110af84d2585211125ba.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 2b017f0e8d5..9e31da79a0b 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));