changeset 26368:b3378aff433e

(Fbyte_code): Use BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC around internal_catch.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 05 Nov 1999 21:55:27 +0000
parents 9f71d570068d
children 897de8069452
files src/bytecode.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/bytecode.c	Fri Nov 05 21:30:57 1999 +0000
+++ b/src/bytecode.c	Fri Nov 05 21:55:27 1999 +0000
@@ -676,7 +676,9 @@
 
 	case Bcatch:
 	  v1 = POP;
+	  BEFORE_POTENTIAL_GC ();
 	  TOP = internal_catch (TOP, Feval, v1);
+	  AFTER_POTENTIAL_GC ();
 	  break;
 
 	case Bunwind_protect: