From 74e9500823bdecaa5ef0b96139293b44b6c5fb9c Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 5 Nov 1999 21:55:27 +0000 Subject: [PATCH] (Fbyte_code): Use BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC around internal_catch. --- src/bytecode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bytecode.c b/src/bytecode.c index 0093e692b2f..fb94cf8e1d7 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -676,7 +676,9 @@ If the third argument is incorrect, Emacs may crash.") case Bcatch: v1 = POP; + BEFORE_POTENTIAL_GC (); TOP = internal_catch (TOP, Feval, v1); + AFTER_POTENTIAL_GC (); break; case Bunwind_protect: -- 2.39.5