From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Defcustoms, how do users find them? Date: Thu, 26 Nov 2009 17:42:48 +0100 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1259256020 29104 80.91.229.12 (26 Nov 2009 17:20:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 26 Nov 2009 17:20:20 +0000 (UTC) Cc: Emacs-Devel devel To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Nov 26 18:20:08 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 1NDi0j-0001Pr-Qq for ged-emacs-devel@m.gmane.org; Thu, 26 Nov 2009 18:20:06 +0100 Original-Received: from localhost ([127.0.0.1]:34428 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NDi0j-0005rP-C2 for ged-emacs-devel@m.gmane.org; Thu, 26 Nov 2009 12:20:05 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NDhR5-0005ro-O1 for emacs-devel@gnu.org; Thu, 26 Nov 2009 11:43:15 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NDhR1-0005pW-5l for emacs-devel@gnu.org; Thu, 26 Nov 2009 11:43:15 -0500 Original-Received: from [199.232.76.173] (port=44159 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NDhR0-0005pO-W4 for emacs-devel@gnu.org; Thu, 26 Nov 2009 11:43:11 -0500 Original-Received: from mail-yw0-f172.google.com ([209.85.211.172]:60928) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NDhQz-0007zv-TA for emacs-devel@gnu.org; Thu, 26 Nov 2009 11:43:10 -0500 Original-Received: by ywh2 with SMTP id 2so799410ywh.27 for ; Thu, 26 Nov 2009 08:43:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=m5hwEDEGNwKqAGo6NWD4yzzfrPv+dtpPcGCwL+Ytfjw=; b=Ihaezyjg4MpbZWgJ6uYGe6a6tgiF6FFcGiGduDAeYzRi1N7rmCIr5LOsIqtorNzJhz A/zlhwf9KWsEhddfoYBr7Wah5wRvSwibwNhdCEdu3RrIJejsXuHRPuQcr6uZHzQQzV6A Zyoz9WDxhDxmbl8HYvJDGOxhyusia7kgGbK+0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=V4/Hh9nIG9qwnAF6GMBc7ySFCxifb2Rh/oWRzAqursMxEDEG9/PYnO+s0nVE0sS9RO RnKwNT08WFkwz87SOMGkg0xuT9jxJ53OSZWmXAg9vQ2L6lVIVfhEjLEdKDIyvkkdT+I3 K1AQGiOYXaLyZuImgOMuxwZLZbQbaptxOLzUs= Original-Received: by 10.101.61.20 with SMTP id o20mr6379206ank.166.1259253788106; Thu, 26 Nov 2009 08:43:08 -0800 (PST) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:117825 Archived-At: On Thu, Nov 26, 2009 at 1:51 PM, Lennart Borgman wrote: > On Wed, Nov 18, 2009 at 3:34 PM, Stefan Monnier > wrote: >> >> Checking memory use of your scheme would be a good idea, yes, because > > How do I do that? I tried using garbage-collection to get memory use. Is this output of some value? I have just ran my version of cus-load.el with all the defcustom:s. (message "gc => %S" (garbage-collect)) (load-file "my-cus-load.el") (message "gc => %S" (garbage-collect)) ;;; after emacs -Q ;; gc => ((64567 . 8541) (14423 . 0) (726 . 107) 88519 295966 (50 . 70) (347 . 97) (5376 . 3255)) ;; Loading c:/emacs/p/091105/emacs/lisp/my-cus-load.el (source)...done ;; gc => ((91214 . 17541) (21758 . 0) (722 . 111) 258011 294763 (50 . 70) (348 . 96) (13174 . 4466))