]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fbyte_code): Use BEFORE_POTENTIAL_GC and
authorGerd Moellmann <gerd@gnu.org>
Fri, 5 Nov 1999 21:55:27 +0000 (21:55 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 5 Nov 1999 21:55:27 +0000 (21:55 +0000)
AFTER_POTENTIAL_GC around internal_catch.

src/bytecode.c

index 0093e692b2f614a165f9e15750e3c170d4b28896..fb94cf8e1d77fb043152620c258f198a469d88bf 100644 (file)
@@ -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: