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 0093e692b2f..fb94cf8e1d7 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -676,7 +676,9 @@ If the third argument is incorrect, Emacs may crash.")
676 676
677 case Bcatch: 677 case Bcatch:
678 v1 = POP; 678 v1 = POP;
679 BEFORE_POTENTIAL_GC ();
679 TOP = internal_catch (TOP, Feval, v1); 680 TOP = internal_catch (TOP, Feval, v1);
681 AFTER_POTENTIAL_GC ();
680 break; 682 break;
681 683
682 case Bunwind_protect: 684 case Bunwind_protect: