From ... From: Erik Naggum Subject: Re: Changing printing depth Date: 1998/10/09 Message-ID: <3116947106333675@naggum.no>#1/1 X-Deja-AN: 399440604 References: <361E5108.98D2159D@cse.buffalo.edu> mail-copies-to: never Organization: Naggum Software; +47 8800 8879; http://www.naggum.no Newsgroups: comp.lang.lisp * Paul V Gestwicki | Can someone tell me how to set up Lisp so that it will print to full list | depth instead of copping out with #'s? I've tried (setf *print-depth* | nil), but that doesn't work for me. I'm using xemacs allegro cl. it's hard to tell, but it appears that you refer to the values printed by the top-level read-eval-print-loop. normally, *PRINT-LEVEL* is NIL, but the top-level loop's internal value (in TOP-LEVEL:*PRINT-LEVEL*) is 5. #:Erik