Martin Rubey wrote:
> 
> I just noticed that )history )save fails when the history contains
> results from the guessing package (i.e., RECOPs).
> 
> Of course, I was too lazy to implement INFORM for these, but would it
> help?  Here is the backtrace:
> 

Thanks for the backtrace.  The problem has nothing to do with
InputForm -- simply the 'spadClosure?' function decided that
your list is a Spad closure.  The following should fix the
problem (I believe that currently only function can appear
as first part of Spad closure):

--- i-syscmd.boot.bb    2010-10-19 12:26:00.000000000 -0400
+++ i-syscmd.boot       2010-10-19 12:39:08.000000000 -0400
@@ -1894,6 +1894,7 @@
 
 spadClosure? ob ==
   fun := QCAR ob
+  not (FUNCTIONP fun) => nil
   not (name := BPINAME fun) => nil
   name = "WRAPPED" => nil
   vec := QCDR ob


-- 
                              Waldek Hebisch
[email protected] 

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/fricas-devel?hl=en.

Reply via email to