[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Garbage Collection with 4 RAM (HELP!!)
- To: thaddeus@vuse.vanderbilt.edu (Thaddeus R. Crews), info-mcl@services.cambridge.apple.com
- Subject: Re: Garbage Collection with 4 RAM (HELP!!)
- From: e@flavors.com (Doug Currie, Flavors Technology, Inc.)
- Date: Wed, 28 Sep 1994 14:45:07 -0500
>I am saving the application without the compiler. But I was
>wondering if there were any more memory-saving tricks I could
>try
Here are some space hogs we remove when "shaking" our application:
(setq ccl::*fred-special-indent-alist* nil
ccl::%source-files% (make-hash-table :test #'eq)
ccl::%documentation (make-hash-table :test #'eq)
;dfs::*all-file-sets* nil
*arglist-on-space* nil)
You might also look at help strings if your space is very limited.
e