git maxima output in wxmaxima.



On 2012-11-27, joaquin borges <ultradenso at gmail.com> wrote:

> Hello, I am using the following maxima:
> Maxima 5.28.0_132_g5ad2bf7 http://maxima.sourceforge.net

> but I don't get a correct output when I type anything in wxmaxima
> for example :
> (%i1) 12;
>
> outputs :
>
> mlabel(%o1,12)

> wxmaxima is 12.09.0

Well, wxMaxima needs to be updated due to change in Maxima: now
expression labels are represented with MLABEL instead of MLABLE
(spelled incorrectly). Presumably whatever display properties are
associated with MLABLE can be copied over to MLABEL. Maybe you can do it
yourself even -- something like

:lisp (setf (get 'mlabel 'wxxml) (get 'mlable 'wxxml))

(I dunno if that's correct or sufficient.)

best,

Robert Dodier

PS.
commit 620f23e27328a58bfa81fe101734b7488a2b93f5
Author: robert_dodier <robert_dodier at users.sourceforge.net>
Date:   Wed Sep 19 22:24:11 2012 -0600

    Replace MLABLE with MLABEL because I just couldnt stand it anymore.