Subj : not ignoring you... but...
To   : Scott Little
From : mark lewis
Date : Sat Jul 10 2004 02:23 pm

ml>> ahh, yes, v1.06 made several fixes and implemented filebuffering for

SL> Hmm... it looks like v1.06 has the:

SL>         BlockWrite(JM^.IdxFile, JamIdx^, JamIdxBufSize);
SL> to
SL>         BlockWrite(JM^.IdxFile, JamIdx^, JM^.IdxRead);

SL> fix,

ok... i can see the change but am not fully aware of it being done... i had a
list of fixes i thought... gotta go looking some more...

[time passes]

that looks like the

v1.04 01/09/94

[trim]

     - Fixed JAM writeidx to only write the amount that
       had been read

fix...

SL> but what about the:

SL>         If JM^.TxtSubChars <= TxtSubBufSize Then
SL> to
SL>         If JM^.TxtSubChars <= TxtSubBufSize-1 Then

SL> one?

where? in here??

Procedure JamMsgObj.AddTxtSub(St: String);
 Var
   i: Word;

 Begin
 For i := 1 to Length(St) Do
   Begin
   If JM^.TxtSubChars <= TxtSubBufSize Then
     Begin
     JM^.TxtSubBuf[JM^.TxtSubChars] := St[i];
     Inc(JM^.TxtSubChars);
     End;
   End;
 If JM^.TxtSubChars <= TxtSubBufSize Then
   Begin
   JM^.TxtSubBuf[JM^.TxtSubChars] := #13;
   Inc(JM^.TxtSubChars);
   End;
 End;

if so, which one? i'm not aware of needing that change... all my stuff posted
with my PostIt util uses this code all the time and i've not seen any problems
with it... then again, my stuff only posts text files to message bases... i've
not gone so far as to try to write a tosser or OLR with it...

SL> Did that turn out not to be needed?

i really don't know... what were the problems without it? i don't see anything
in CHANGES.MKS that would indicate that there was a fix in that area, either...
what was that fix supposed to do??

)\/(ark


* Origin: (1:3634/12)