[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: BASE_PURESIZE
From: |
Dan Nicolaescu |
Subject: |
Re: BASE_PURESIZE |
Date: |
Sun, 25 Oct 2009 01:24:47 -0700 (PDT) |
Stefan Monnier <address@hidden> writes:
> PS: Regarding the recent purecopy of autoload's file names: why not just
> purecopy the whole autload list?
If it works it should have an important impact...
So please install it. I bet you'll have to bump BASE_PURESIZE again
after doing that :-)
Another issue that I hit:
Changing (in files.el)
From:
(defcustom directory-free-space-program "df"
to:
(defcustom directory-free-space-program (purecopy "df")
does not get rid of the "df" string in GC memory. The reason is
ELISP> (get 'directory-free-space-program 'standard-value)
((purecopy "df"))
BTW, this is not a problem for autoloaded defcustoms, they get
transformed into defvars in loaddefs.el.
- Re: BASE_PURESIZE, (continued)
- Re: BASE_PURESIZE, Andreas Schwab, 2009/10/23
- Re: BASE_PURESIZE, Eli Zaretskii, 2009/10/24
- Re: BASE_PURESIZE, Andreas Schwab, 2009/10/24
- Re: BASE_PURESIZE, Eli Zaretskii, 2009/10/24
- Re: BASE_PURESIZE, Dan Nicolaescu, 2009/10/24
- Re: BASE_PURESIZE, Stefan Monnier, 2009/10/24
- Re: BASE_PURESIZE,
Dan Nicolaescu <=
- defcustom standard-value (was: Re: BASE_PURESIZE), Dan Nicolaescu, 2009/10/29
- Re: BASE_PURESIZE, Chong Yidong, 2009/10/24
- Re: BASE_PURESIZE, Dan Nicolaescu, 2009/10/24
Re: BASE_PURESIZE, Dan Nicolaescu, 2009/10/23
Re: BASE_PURESIZE, Juanma Barranquero, 2009/10/23