diff options
| author | AndreaCorallo | 2020-02-29 08:36:06 +0000 |
|---|---|---|
| committer | Andrea Corallo | 2020-02-29 08:36:06 +0000 |
| commit | d0066e30615f135d9eebd48b98dddfcb7cf84ed0 (patch) | |
| tree | 4ae44ecb15eb92abb93544da83ee4ed67366a229 /src | |
| parent | 8788fab9e1adf8a4f212a850ebae6845878dbad7 (diff) | |
| download | emacs-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.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) | |||
| 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 | ||