aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorPip Cet2021-05-16 15:44:26 +0200
committerStefan Monnier2022-07-01 09:42:00 -0400
commit094fd7ded365434b08f5d7c8ff499d17d566d54b (patch)
tree40366419e9d899e48c26439f428fee7b741d307c /src/bytecode.c
parent3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff)
downloademacs-scratch/no-purespace-2.tar.gz
emacs-scratch/no-purespace-2.zip
Remove purespace from Emacsscratch/no-purespace-2
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c3
1 files changed, 0 insertions, 3 deletions
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 <https://www.gnu.org/licenses/>. */
27#include "keyboard.h" 27#include "keyboard.h"
28#include "syntax.h" 28#include "syntax.h"
29#include "window.h" 29#include "window.h"
30#include "puresize.h"
31 30
32/* Work around GCC bug 54561. */ 31/* Work around GCC bug 54561. */
33#if GNUC_PREREQ (4, 3, 0) 32#if GNUC_PREREQ (4, 3, 0)
@@ -1582,7 +1581,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
1582 Lisp_Object newval = POP; 1581 Lisp_Object newval = POP;
1583 Lisp_Object cell = TOP; 1582 Lisp_Object cell = TOP;
1584 CHECK_CONS (cell); 1583 CHECK_CONS (cell);
1585 CHECK_IMPURE (cell, XCONS (cell));
1586 XSETCAR (cell, newval); 1584 XSETCAR (cell, newval);
1587 TOP = newval; 1585 TOP = newval;
1588 NEXT; 1586 NEXT;
@@ -1593,7 +1591,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
1593 Lisp_Object newval = POP; 1591 Lisp_Object newval = POP;
1594 Lisp_Object cell = TOP; 1592 Lisp_Object cell = TOP;
1595 CHECK_CONS (cell); 1593 CHECK_CONS (cell);
1596 CHECK_IMPURE (cell, XCONS (cell));
1597 XSETCDR (cell, newval); 1594 XSETCDR (cell, newval);
1598 TOP = newval; 1595 TOP = newval;
1599 NEXT; 1596 NEXT;