From d0066e30615f135d9eebd48b98dddfcb7cf84ed0 Mon Sep 17 00:00:00 2001 From: AndreaCorallo Date: Sat, 29 Feb 2020 08:36:06 +0000 Subject: [PATCH] * Keep comp-subr-list into pure space Sad pure space is not effective nowdays but anyway... should go there. --- src/lread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 005528782d0..8b6db92cca9 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4405,7 +4405,7 @@ defsubr (union Aligned_Lisp_Subr *aname) XSETSUBR (tem, sname); set_symbol_function (sym, tem); #ifdef HAVE_NATIVE_COMP - Vcomp_subr_list = Fcons (tem, Vcomp_subr_list); + Vcomp_subr_list = Fpurecopy (Fcons (tem, Vcomp_subr_list)); #endif } -- 2.39.5