From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/53034 Path: main.gmane.org!not-for-mail From: John Paul Wallington Newsgroups: gmane.emacs.gnus.general Subject: Re: something memory related definitely going on lately. Date: Fri, 06 Jun 2003 05:32:56 +0100 Sender: ding-owner@lists.math.uh.edu Message-ID: <87n0gvvn9j.fsf@indigo.shootybangbang.com> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1054877023 15718 80.91.224.249 (6 Jun 2003 05:23:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 6 Jun 2003 05:23:43 +0000 (UTC) Original-X-From: ding-owner+M1578@lists.math.uh.edu Fri Jun 06 07:23:41 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19O9hU-00045F-00 for ; Fri, 06 Jun 2003 07:23:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19O9jQ-0002PG-00; Fri, 06 Jun 2003 00:25:40 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19O8yh-0002EN-00 for ding@lists.math.uh.edu; Thu, 05 Jun 2003 23:37:23 -0500 Original-Received: (qmail 19659 invoked by alias); 6 Jun 2003 04:37:22 -0000 Original-Received: (qmail 19652 invoked from network); 6 Jun 2003 04:37:22 -0000 Original-Received: from main.gmane.org (80.91.224.249) by sclp3.sclp.com with SMTP; 6 Jun 2003 04:37:22 -0000 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19O8wK-0001Ve-00 for ; Fri, 06 Jun 2003 06:34:56 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19O8wJ-0001VV-00 for ; Fri, 06 Jun 2003 06:34:55 +0200 Original-Lines: 14 Original-X-Complaints-To: usenet@main.gmane.org X-Attribution: jpw X-Face: R(_z-rF:grdKO.*u`n);p.i$Eiz=h^CO5eDYv"4:K@#\HN09*Ykx}}B{kF/KH}%f_o^Wp wrote: > Is there a function to get a lits of all current variables in use? See `mapatoms', eg: (let (vars) (mapatoms (lambda (x) (and (symbolp x) (boundp x) (not (keywordp x)) (push x vars)))) vars)