aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 7cd38a0fe2e..f2394556e2b 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1193,8 +1193,10 @@ If the third argument is incorrect, Emacs may crash.")
1193 case Bgeq: 1193 case Bgeq:
1194 { 1194 {
1195 Lisp_Object v1; 1195 Lisp_Object v1;
1196 BEFORE_POTENTIAL_GC ();
1196 v1 = POP; 1197 v1 = POP;
1197 TOP = Fgeq (TOP, v1); 1198 TOP = Fgeq (TOP, v1);
1199 AFTER_POTENTIAL_GC ();
1198 break; 1200 break;
1199 } 1201 }
1200 1202