From 094fd7ded365434b08f5d7c8ff499d17d566d54b Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Sun, 16 May 2021 15:44:26 +0200 Subject: Remove purespace from Emacs --- src/bytecode.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/bytecode.c') diff --git a/src/bytecode.c b/src/bytecode.c index d75767bb0c5..3be5e8a3162 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -27,7 +27,6 @@ along with GNU Emacs. If not, see . */ #include "keyboard.h" #include "syntax.h" #include "window.h" -#include "puresize.h" /* Work around GCC bug 54561. */ #if GNUC_PREREQ (4, 3, 0) @@ -1582,7 +1581,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, Lisp_Object newval = POP; Lisp_Object cell = TOP; CHECK_CONS (cell); - CHECK_IMPURE (cell, XCONS (cell)); XSETCAR (cell, newval); TOP = newval; NEXT; @@ -1593,7 +1591,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, Lisp_Object newval = POP; Lisp_Object cell = TOP; CHECK_CONS (cell); - CHECK_IMPURE (cell, XCONS (cell)); XSETCDR (cell, newval); TOP = newval; NEXT; -- cgit v1.2.1