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 d62d7d067b1..ecea0c6df36 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 | /* Define BYTE_CODE_SAFE true to enable some minor sanity checking, | 31 | /* Define BYTE_CODE_SAFE true to enable some minor sanity checking, |
| 33 | useful for debugging the byte compiler. It defaults to false. */ | 32 | useful for debugging the byte compiler. It defaults to false. */ |
| @@ -1639,7 +1638,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, | |||
| 1639 | record_in_backtrace (Qsetcar, &TOP, 2); | 1638 | record_in_backtrace (Qsetcar, &TOP, 2); |
| 1640 | wrong_type_argument (Qconsp, cell); | 1639 | wrong_type_argument (Qconsp, cell); |
| 1641 | } | 1640 | } |
| 1642 | CHECK_IMPURE (cell, XCONS (cell)); | ||
| 1643 | XSETCAR (cell, newval); | 1641 | XSETCAR (cell, newval); |
| 1644 | TOP = newval; | 1642 | TOP = newval; |
| 1645 | NEXT; | 1643 | NEXT; |
| @@ -1654,7 +1652,6 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, | |||
| 1654 | record_in_backtrace (Qsetcdr, &TOP, 2); | 1652 | record_in_backtrace (Qsetcdr, &TOP, 2); |
| 1655 | wrong_type_argument (Qconsp, cell); | 1653 | wrong_type_argument (Qconsp, cell); |
| 1656 | } | 1654 | } |
| 1657 | CHECK_IMPURE (cell, XCONS (cell)); | ||
| 1658 | XSETCDR (cell, newval); | 1655 | XSETCDR (cell, newval); |
| 1659 | TOP = newval; | 1656 | TOP = newval; |
| 1660 | NEXT; | 1657 | NEXT; |