home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckiker.upd < prev    next >
Text File  |  2020-01-01  |  3KB  |  63 lines

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