From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Re: BASE_PURESIZE Date: Sun, 25 Oct 2009 01:24:47 -0700 (PDT) Message-ID: <200910250824.n9P8OlUp013541@godzilla.ics.uci.edu> References: <8363a6gytm.fsf@gnu.org> <834opqgpzs.fsf@gnu.org> <83skd9f6ok.fsf@gnu.org> <83ljj1exq6.fsf@gnu.org> <200910241727.n9OHReEu007324@godzilla.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1256459295 10159 80.91.229.12 (25 Oct 2009 08:28:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Oct 2009 08:28:15 +0000 (UTC) Cc: Eli Zaretskii , Andreas Schwab , emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 25 09:28:07 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N1ySM-0004GO-U6 for ged-emacs-devel@m.gmane.org; Sun, 25 Oct 2009 09:28:07 +0100 Original-Received: from localhost ([127.0.0.1]:60971 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N1ySL-0004al-BL for ged-emacs-devel@m.gmane.org; Sun, 25 Oct 2009 04:28:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N1ySG-0004Za-0W for emacs-devel@gnu.org; Sun, 25 Oct 2009 04:28:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N1ySB-0004Wm-CB for emacs-devel@gnu.org; Sun, 25 Oct 2009 04:27:59 -0400 Original-Received: from [199.232.76.173] (port=57272 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N1ySB-0004Wj-8u for emacs-devel@gnu.org; Sun, 25 Oct 2009 04:27:55 -0400 Original-Received: from colin-baker-v0.ics.uci.edu ([128.195.1.153]:43548) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N1yS9-0003xU-70; Sun, 25 Oct 2009 04:27:53 -0400 Original-Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by colin-baker-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id n9P8Omae017782; Sun, 25 Oct 2009 01:24:48 -0700 Original-Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id n9P8OlUp013541; Sun, 25 Oct 2009 01:24:47 -0700 (PDT) In-Reply-To: (Stefan Monnier's message of "Sat, 24 Oct 2009 15:01:21 -0400") Original-Lines: 25 X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: n9P8Omae017782 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:116385 Archived-At: Stefan Monnier 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.