aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreaCorallo2020-02-29 08:36:06 +0000
committerAndrea Corallo2020-02-29 08:36:06 +0000
commitd0066e30615f135d9eebd48b98dddfcb7cf84ed0 (patch)
tree4ae44ecb15eb92abb93544da83ee4ed67366a229 /src
parent8788fab9e1adf8a4f212a850ebae6845878dbad7 (diff)
downloademacs-d0066e30615f135d9eebd48b98dddfcb7cf84ed0.tar.gz
emacs-d0066e30615f135d9eebd48b98dddfcb7cf84ed0.zip
* Keep comp-subr-list into pure space
Sad pure space is not effective nowdays but anyway... should go there.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
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)
4405 XSETSUBR (tem, sname); 4405 XSETSUBR (tem, sname);
4406 set_symbol_function (sym, tem); 4406 set_symbol_function (sym, tem);
4407#ifdef HAVE_NATIVE_COMP 4407#ifdef HAVE_NATIVE_COMP
4408 Vcomp_subr_list = Fcons (tem, Vcomp_subr_list); 4408 Vcomp_subr_list = Fpurecopy (Fcons (tem, Vcomp_subr_list));
4409#endif 4409#endif
4410} 4410}
4411 4411