diff options
author | AndreaCorallo <akrl@sdf.org> | 2020-02-29 08:36:06 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-02-29 08:36:06 +0000 |
commit | d0066e30615f135d9eebd48b98dddfcb7cf84ed0 (patch) | |
tree | 4ae44ecb15eb92abb93544da83ee4ed67366a229 /src/lread.c | |
parent | 8788fab9e1adf8a4f212a850ebae6845878dbad7 (diff) | |
download | emacs-d0066e30615f135d9eebd48b98dddfcb7cf84ed0.tar.gz emacs-d0066e30615f135d9eebd48b98dddfcb7cf84ed0.tar.bz2 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/lread.c')
-rw-r--r-- | src/lread.c | 2 |
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) 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 } |