Inconsistency when using previously defined variables as arguments to functions



-----maxima-bounces at math.utexas.edu wrote: -----

> But?thank?you?for?suggesting?that?it's?possible?to?just?use?the?
> parser,simplifier,?etc.?without?using?all?of?maxima,

A variant of

(defmspec $read_no_simp (x) 
  (displa (second x))
  '$done)

might be something you can use; example

(%i21) read_no_simp(1/(1/x) + sin(0) + log(0) - 0^0 + 0/0);
      1/(1/x)+sin(0)+log(0)-0^0+0/0

(%o21) done

--Barton