From: Chris S. <san...@us...> - 2010-10-13 14:58:15
|
Update of /cvsroot/stack/stack-dev/maxima In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2102/maxima Modified Files: stacktex.lisp Log Message: Fix to the unary minus display problem. Index: stacktex.lisp =================================================================== RCS file: /cvsroot/stack/stack-dev/maxima/stacktex.lisp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** stacktex.lisp 30 Sep 2010 16:56:14 -0000 1.6 --- stacktex.lisp 13 Oct 2010 14:58:07 -0000 1.7 *************** *** 62,68 **** (defun tex-prefix-unaryminus (x l r) ! (tex (cadr x) (append l (texsym (caar x))) r 'mparen 'mparen)) (defprop &? ("?") texsym) --- 62,70 ---- (defun tex-prefix-unaryminus (x l r) ! (tex (cadr x) (append l (texsym (caar x))) r (caar x) rop)) ! + ;; Display question marks correctly (defprop &? ("?") texsym) *************** *** 147,149 **** (defprop mlessp (" < ") texsym) ! (defprop mgreaterp (" > ") texsym) \ No newline at end of file --- 149,151 ---- (defprop mlessp (" < ") texsym) ! (defprop mgreaterp (" > ") texsym) |