print ( false ) bug 5.26.0



On Feb. 28, 2012, Robert Dodier wrote:
>I'm guessing you have display2d:false by default.

You are correct and I should have included that
default setting (via init file) in my report.

On Feb. 28, 2012 Barton Willis wrote
>A stupid Maxima trick is to use reset to determine
>   which user options have  non-default values.

Thanks for pointing out this use, which might have
helped me notice what flags I had set in my init file.

--------------------------------------
(%i1) logsimp;
(%o1) true
(%i2) exp(log(x));
(%o2) x
(%i3) logsimp:false$
(%i4) exp(log(x));
(%o4) %e^log(x)
(%i5) reset();
(%o1) [logsimp, maxima_userdir, maxima_tempdir, lispdisp, linenum, %, 
labels,
                               tr-unique, features, ratprint, display2d, _, 
__]
(%i2) exp(log(x));
(%o2)                                  x
-------------------------------------------
Ted