From ... From: Erik Naggum Subject: Re: floor Date: 2000/02/16 Message-ID: <3159729676010387@naggum.no>#1/1 X-Deja-AN: 586708996 References: mail-copies-to: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 950743299 121 195.0.192.66 (16 Feb 2000 23:21:39 GMT) Organization: Naggum Software; +47 8800 8879 or +1 510 435 8604; fax: +47 2210 9077; http://www.naggum.no User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5 Mime-Version: 1.0 NNTP-Posting-Date: 16 Feb 2000 23:21:39 GMT Newsgroups: comp.lang.lisp * "Slapstiq" | I need to use the floor function but it returns two numbers. if you are talking about Common Lisp, the two numbers are returned as multiple values, which means that the primary value is the only value you will see if you don't do something special to capture the others. if you are talking about Emacs Lisp, the two numbers are returned as a list of two values if you use the Common Lisp-like FLOOR* function because Emacs Lisp can only return one value from any function. | Is there any for me to break a list in two halves? consider VALUES-LIST. #:Erik