diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 3 |
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; |