Question: why infolevel display sometimes does not display some characters?

I do not remember now if this came up before or not. But this has been a problem in Maple for years.

when doing infolevel[dsolve]:=5 and call dsolve(), some of the display on the screen is missing commas and multiplication sign and who know what else. Since it is all replace by space.

This happens only to part of the display. Here is an example (must use restart each time to see the full display)

restart;
ode:=diff(y(x),x) = (-y(x)^2+4*a*x)^2/y(x); 
infolevel[dsolve]:=5;
dsolve(ode);

Here is the output. Using worksheet, V 2025.2 on windows 10 (I am only showing part of the output which has the problem)

Looking at the line where is says "-> Calling odsolve ". Notice the rest. diff(diff(y(x) x) x)  should be diff(diff(y(x),x),x)  and the end of the line has diff(y(x) x)) y(x)  . So one can guess this should be  diff(y(x),x))*y(x) or it could be diff(y(x),x))/y(x) or may be something else.

THis cause a problem when trying to copy it and use it to try it.

Is there something one can do  in settings to fix this part of the display? so nothing is replace by space?

Maple 2025.2 on windows 10

I also tried this in document mode instead of worksheet. Same result. 

Please Wait...