ver. 5.26.0 display bug



On Feb. 1, 2012, I wrote:
------------------
>version 5.26.0 (windows gcl) inserts
>(false) in front of the usual display
>command output. 
-------------------------
I should have mentioned that the display
mode was display2d = false. If I set
desplay2d to true, the (false) goes away:

-----------------------------
(%i6) display2d:true$

(%i7) display(a);
                                     a = 3

(%o7)                                done

(%i8) display2d:false$

(%i9) display(a);
(false) a = 3

(%o9) done
-----------------------------

Ted Woollett