rtoy / maxima

A Clone of Maxima's repo
Other
0 stars 0 forks source link

[clisp] quit() doesn't work #4

Closed rtoy closed 3 months ago

rtoy commented 3 months ago

Imported from SourceForge on 2024-07-01 16:01:41 Created by billingd on 2001-11-19 22:35:10 Original: https://sourceforge.net/p/maxima/bugs/4


Platform: win2k / cygwin Lisp: clisp-2.27 Maxima version: sourceforge cvs 2001-11-19

The maxima quit() command doesn't work. The following change to src/suprv1.lisp fixes the problem, but obviously won't work with other lisps.

Replace

(DEFMFUN $QUIT () nil #+kcl (bye) (quit) #+excl "don't know quit function")

with

(DEFMFUN $QUIT () (ext:quit) )

+++++++++++++++++++++++++++++++++++++++++ (Mr) David Billinghurst Comalco Research Centre PO Box 316, Thomastown, Vic, Australia, 3074 Phone: +61 3 9469 0642 FAX: +61 3 9462 2700 Email: David.Billinghurst@riotinto.com

rtoy commented 3 months ago

Imported from SourceForge on 2024-07-01 16:01:43 Created by billingd on 2001-11-25 03:49:24 Original: https://sourceforge.net/p/maxima/bugs/4/#bd5d


rtoy commented 3 months ago

Imported from SourceForge on 2024-07-01 16:01:45 Created by billingd on 2001-11-25 03:49:24 Original: https://sourceforge.net/p/maxima/bugs/4/#fc7b


Logged In: YES user_id=365569

Fixed