aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorDave Love2001-01-30 10:07:18 +0000
committerDave Love2001-01-30 10:07:18 +0000
commitd9c1f6f955607281bea9f5168390a39c04d50043 (patch)
treeca95ada73f8b90dd7b80f18b955dd8d642671df9 /src/bytecode.c
parent2aa25884da2fdc562e7a6cb72edb5516a07fa511 (diff)
downloademacs-d9c1f6f955607281bea9f5168390a39c04d50043.tar.gz
emacs-d9c1f6f955607281bea9f5168390a39c04d50043.zip
(Fbyte_code) <Bgeq>: Add BEFORE_POTENTIAL_GC and
AFTER_POTENTIAL_GC.
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