How to tell Maxima not to use "rat' replaced..."



Hi all!

I've got a problem with an output of Maxima. I would like to print the file
that contains the text below and the print should look nice. How can I tell
Maxima not to put out the lines beggining with: "`rat replaced"?

======================================================================
Q[1](z)=C[1]-cos(alpha)^2*q*z

(%i16) batchload("Abmessungen.mac")$
	solve([Q[1](z)=(A[v]*sin(alpha)-A[h]*sin(alpha)),z=0],[C[1],z])$
	display(C[1])$
	kill(z)$
	batchload("Abmessungen freigeben.mac")$

`rat' replaced -76.6990182638242 by -62433/814 = -76.6990171990172
`rat' replaced -10.86725746336 by -115269/10607 = -10.8672574714811
C[1]=62433/814
======================================================================

Abmessungen.mac:
======================================================================
keepfloat:true$
load("units")$
postfix("?")$
x?:=x*deg/radian$
s[1]:0.175,float$
s[2]:0.86,float$
s[3]:3.29/2,float$
s[4]:2.43,float$
s[5]:3.115,float$
s[6]:3.29,float$
q:44,float$
alpha:60.2?,float$
beta:38.2?,float$
A[v]:(q*s[1]/cos(alpha)+q*(s[2]-s[1])/cos(beta)+q*(s[3]-s[2])),float$
B[v]:(A[v]),float$
A[h]:0$
B[h]:0$
======================================================================


Greetings Helge