From: Joseph H Speredelozzi
Subject: print
Date: 
Message-ID: <Pine.OSF.3.95q.971013234137.31901B-100000@bert.WPI.EDU>
how do i get the print function in lisp to not print that initial newline,
or is there another printing function that does not do that?

						Thanks,
						Joe
From: Kent M Pitman
Subject: Re: print
Date: 
Message-ID: <sfw90vwswje.fsf@world.std.com>
Joseph H Speredelozzi <ยทยทยทยท@wpi.edu> writes:

> how do i get the print function in lisp to not print that initial newline,
> or is there another printing function that does not do that?

Ignoring defaulting of the stream argument, which is actually optional,
print does this:

  (defun print (x stream)
    (terpri stream)
    (prin1 x stream)
    (write-char #\Space stream)
    x)

In other words, you want PRIN1.