From ... Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-xit-01!supernews.com!newsfeed.online.be!skynet.be!skynet.be!ossa.telenet-ops.be!nmaster.kpnqwest.net!nreader1.kpnqwest.net.POSTED!not-for-mail Newsgroups: comp.lang.lisp Subject: Re: newbie ques. References: <3CD63A8A.19C37676@aol.com> Mail-Copies-To: never From: Erik Naggum Message-ID: <3229710159077161@naggum.net> Organization: Naggum Software, Oslo, Norway Lines: 26 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 May 2002 21:42:39 GMT X-Complaints-To: newsmaster@KPNQwest.no X-Trace: nreader1.kpnqwest.net 1020721359 193.71.199.50 (Mon, 06 May 2002 23:42:39 MET DST) NNTP-Posting-Date: Mon, 06 May 2002 23:42:39 MET DST Xref: archiver1.google.com comp.lang.lisp:32964 * "A.Z." | i am real sorry if this seems like a trivial question .. But I have a | project due tomorrow and i can't figure out what is wrong. I am doing a | program that differentiates a mathematical equation. the algorithm seems | to work fine but I have a problem when the list is a little long : I get | answers including a pound sign # some friends told me it was something | generated by the interpreter but couldnt fix it... so I was wondering if | anybody has any ideas When this happens in the read-eval-print-loop (or listener) that you are using, one easy way to get the whole result is to type this immediately after you have received the answer: (pprint *) I think it is a feature of the listener to abbreviate returned values. Please note that this has very little or nothing to do with *print-level* or *print-length*. Those variables control the output of your own calls to print (or pprint). The print of the listener should not use them, but should have its own set of such printer control variables. -- In a fight against something, the fight has value, victory has none. In a fight for something, the fight is a loss, victory merely relief. 70 percent of American adults do not understand the scientific process.