aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorStefan Kangas2025-02-01 04:56:52 +0100
committerStefan Kangas2025-02-01 04:56:52 +0100
commitbf97946d7dc460b7d3c3ce03193041b891b51faf (patch)
treec799f87903ca3dcba8b804bd185b519aacc0a636 /src/bytecode.c
parenta4a0957b6b3b1db858524ac6d4dc3d951f65960b (diff)
parentaa07e94439c663f768c32a689d14506d25a7a5bc (diff)
downloademacs-bf97946d7dc460b7d3c3ce03193041b891b51faf.tar.gz
emacs-bf97946d7dc460b7d3c3ce03193041b891b51faf.zip
Merge branch 'scratch/no-purespace' into 'master'
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 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;