list order / draw-points joined



Dnia Wed, 21 Sep 2011 16:03:41 +0100, Rupert Swarbrick napisa?(a):

> Adam Majewski <adammaj1 at o2.pl> writes:
>> I have done as make install and :
>>
>>
>>
>> (%i4) :lisp (print-directories)
>> maxima-prefix=/usr/local
>> maxima-imagesdir=/usr/local/lib/maxima/5.25.1/binary-clisp
>> maxima-sharedir=/usr/local/share/maxima/5.25.1/share
>> maxima-srcdir=/usr/local/share/maxima/5.25.1/src
>> maxima-demodir=/usr/local/share/maxima/5.25.1/demo
>> maxima-testsdir=/usr/local/share/maxima/5.25.1/tests
>> maxima-docdir=/usr/local/share/maxima/5.25.1/doc
>> maxima-infodir=/usr/local/share/info
>> maxima-htmldir=/usr/local/share/maxima/5.25.1/doc/html
>> maxima-plotdir=/usr/local/libexec/maxima/5.25.1
>> maxima-layout-autotools=T
>> maxima-userdir=/home/adam/.maxima
>> maxima-tempdir=/home/adam
>> maxima-lang-subdir=NIL
>> maxima-objdir=/home/adam/.maxima/binary/binary-clisp NIL
>>
>> but  :
>> (%i2) ? points;
>>   No exact match found for topic `points'. Try `?? points' (inexact
>>   match) instead.
>> (%o2) false
>> (%i3) ?? points;
>> (%o3) false
> 
> Hmm, I'm not sure what's going on here. What's supposed to happen is
> that Maxima reads in a file called maxima-index.lisp from maxima-infodir
> (in your case /usr/local/share/info). 

adam at adam-laptop:/usr/local/share/info$ ls
dir  gmp.info  gmp.info-1  gmp.info-2  mpc.info  mpfr.info








Since you aren't getting an error
> about that, I presume this worked. Maybe check the file exists and has a
> massive defparameter form (my copy is about 2500 lines long).
> 
> To check that this bit has worked, you could do something like the
> following.
> 
> - First load up maxima-index.lisp. The easiest way is to type something
>   like
> 
>    (%i*) ? blarglblargl

(%i1) ? blarglblargl;
Maxima encountered a Lisp error:
 LOAD: A file with name /usr/local/share/info/maxima-index.lisp does not 
exist
Automatically continuing.
To enable the Lisp debugger set *debugger-hook* to nil.


> 
>   or whatever.
> 
> - Now check that *info-deffn-defvr-pairs* has been populated:
> 
>    (%i2) :lisp (length cl-info::*info-deffn-defvr-pairs*)


(%i2) :lisp (length cl-info::*info-deffn-defvr-pairs*)
Maxima encountered a Lisp error:
 
EVAL: variable CL-INFO::*INFO-DEFFN-DEFVR-PAIRS* has no value
Automatically continuing.
To enable the Lisp debugger set *debugger-hook* to nil.




Adam