home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / msvapc.bwr < prev    next >
Text File  |  2020-01-01  |  2KB  |  55 lines

  1. 14-Jan-86 03:47:02-EST,1043;000000000001
  2. Return-Path: <CONTEXT@WASHINGTON.ARPA>
  3. Received: from WASHINGTON.ARPA by CU20B.COLUMBIA.EDU with TCP; Tue 14 Jan 86 03:47:00-EST
  4. Date: Tue 14 Jan 86 00:45:43-PST
  5. From: Ronald Blanford <CONTEXT@WASHINGTON.ARPA>
  6. Subject: MS-Kermit function keys
  7. To: dual!islenet!gibbons@UCBVAX.BERKELEY.EDU
  8. cc: context@WASHINGTON.ARPA, cc.fdc@CU20B.COLUMBIA.EDU
  9.  
  10. I rarely use MS-Kermit on the APC, so would feel better with input from
  11. you about a complaint that came to my attention recently.  During connect
  12. mode the function keys don't operate as they should.  When the key is
  13. pressed, the first of its programmed characters is sent, but the remainder
  14. wait until the next key is pressed.  I looked at the code and believe this
  15. is because the scan code processing doesn't take soft keys into account.
  16.  
  17. Of course one alternative is to use the built-in key programmability in
  18. Kermit to define the function keys, but it would be nice if the original
  19. way worked as well.
  20.  
  21. What do you think it would take to fix the problem?  
  22.  
  23. -- Ron
  24. -------
  25. 16-Jun-86 23:06:51-EDT,1216;000000000001
  26. Mail-From: SY.CHRISTINE created at 16-Jun-86 23:06:50
  27. Return-Path: <@MIT-MULTICS.ARPA:Howard_Chu@UMich-MTS.Mailnet>
  28. Received: from MIT-MULTICS.ARPA by CU20B.COLUMBIA.EDU with TCP; Fri 13 Jun 86 05:14:51-EDT
  29. Received: from UMich-MTS.Mailnet by MIT-MULTICS.ARPA with Mailnet id <2696489469244692@MIT-MULTICS.ARPA>; 13 Jun 1986 04:51:09 edt
  30. Date: Fri, 13 Jun 86 00:22:12 EDT
  31. From: Howard_Chu%UMich-MTS.Mailnet@MIT-MULTICS.ARPA
  32. To: info-kermit@cu20b.columbia.edu
  33. Message-ID: <1342831@UMich-MTS.Mailnet>
  34. Subject: Bug in NEC APC Kermit 2.29
  35. ReSent-Date: Mon 16 Jun 86 23:06:49-EDT
  36. ReSent-From: Christine M Gianone <SY.CHRISTINE@CU20B.COLUMBIA.EDU>
  37. ReSent-To: sy.fdc@CU20B.COLUMBIA.EDU
  38. ReSent-Message-ID: <12215420122.271.SY.CHRISTINE@CU20B.COLUMBIA.EDU>
  39.  
  40. Program infinite loops while writing garbage when using help
  41. in connect mode. A fix for this problem follows:
  42. In file MSXAPC.ASM about line 1625 ...
  43.  
  44. puthlp  proc  near
  45.         cld
  46.         mov   dx,ax
  47.         mov   cl,0         <--  insert this line
  48.         call  getnoc
  49.  
  50. This fixes a register convention error which apparently
  51. relied upon luck when working before. Usually CX is equal
  52. to zero when the routine is called.
  53.  
  54. Glenn McGregor
  55.