home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckc095.zip / ckiker.upd < prev    next >
Text File  |  1989-12-05  |  3KB  |  57 lines

  1. CKIKER.UPD -- list of updates to Amiga Kermit
  2.  
  3. CKIFIO.C, 12 July 1986:
  4. Worked around bug with Lattice standard I/O putc() macro which causes
  5. signed char 0xFF to be discarded if output when it is time to flush a block.
  6. This was affecting 0xFF's at offsets which were multiples of 512 bytes when
  7. binary files were received.  Fixed by changing zchout() argument to unsigned
  8. char.  Also modified zchout() so that an output file error would return -1
  9. as documented.
  10.  
  11. CKITIO.C, 17 July 1986
  12. Fixed bug in contti() which caused the control sequence introducer (0x9B)
  13. to not be transmitted as the ANSI ESC [ sequence in connect mode.  This
  14. uncovered a bug in ttocq() which occurred only with extremely rapid input,
  15. which was then fixed.
  16.  
  17. CKIUTL.C, 17 July 1986
  18. Worked around AmigaDOS quirk which caused last line input in a CLI window
  19. spawned by system() to be echoed (without newline) to the original process
  20. window.  The file handle structure is modified, which lacks finesse but
  21. seems to work.
  22.  
  23. CKICON.C, 27 July 1986
  24. Parity was not being added to outgoing characters in connect mode, causing
  25. problems with systems that actually cared about parity.  The parity
  26. calculation was reinstated.
  27.  
  28. CKITIO.C, 8 September 1986
  29. Realized that ttol() was making the rather obnoxious assumption that the
  30. buffer to be output is not changed while still writing to the serial line.
  31. Because of the way the protocol works, this was not causing problems,
  32. but an output buffer was added to avoid the assumption.
  33.  
  34. various, November 1986-January 1987
  35. Lattice 3.10 changes
  36.  
  37. CKIKER.BLD, CKIKER.MAK, 12 April 1987
  38. Changed references to LIB:LSTARTUP.OBJ to LIB:C.O.  LSTARTUP.OBJ and C.O,
  39. are the same routine, at least prior to 3.10, but Commodore/Amiga renamed
  40. it LSTARTUP.OBJ for their own distributions of the compiler, since it set
  41. up for the Lattice file I/O routines in LC.LIB.  Their own version, 
  42. ASTARTUP.OBJ supported the smaller, limited set defined in AMIGA.LIB.
  43.  
  44. CKI*.C, 1 November 1989
  45.  
  46. Added code to handle both Manx Aztec C (Version 3.6a) and to allow the Amiga
  47. Kermit code to work with Version 4F(095) of C Kermit.  The Aztec-specific
  48. code is all within #ifdef AZTEC_C...#endif pairs.  Several other changes
  49. were made, among them:
  50.  
  51. (a) Added code to set the initial parity according to Preferences in the
  52.     way supported in AmigaDOS 1.2 and beyond, including mark and space.
  53. (b) The zsattr() function was copied from the Unix code and added to
  54.     ckifio.c.  This supports the sending of attribute packets.
  55. (c) The modifications required from the 4D->4E C Kermit update were added.
  56.  
  57.