home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.3 / 6.3.077 < prev    next >
Encoding:
Internet Message Format  |  2005-06-13  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.3.077 (extra)
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.3.077 (extra)
  11. Problem:    VMS: First character input after ESC was not recognized.
  12. Solution:   Added TRM$M_TM_TIMED in vms_read().  (Zoltan Arpadffy)
  13. Files:        src/os_vms.c
  14.  
  15.  
  16. *** ../vim-6.3.076/src/os_vms.c    Wed Jun  9 14:56:26 2004
  17. --- src/os_vms.c    Tue Jun 14 09:49:40 2005
  18. ***************
  19. *** 308,315 ****
  20.       tt_mode = get_tty();
  21.   
  22.       vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
  23. !         (char *)(TRM$M_TM_ESCAPE | TRM$M_TM_NOECHO | TRM$M_TM_NOEDIT |
  24. !            TRM$M_TM_NOFILTR | TRM$M_TM_NORECALL | TRM$M_TM_TRMNOECHO), 0);
  25.       vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
  26.   
  27.       function = (IO$_READLBLK | IO$M_EXTEND);
  28. --- 308,316 ----
  29.       tt_mode = get_tty();
  30.   
  31.       vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
  32. !          (char *)( TRM$M_TM_ESCAPE  | TRM$M_TM_TIMED    | TRM$M_TM_NOECHO |
  33. !                        TRM$M_TM_NOEDIT  | TRM$M_TM_NOFILTR  |
  34. !                        TRM$M_TM_NORECALL| TRM$M_TM_TRMNOECHO), 0);
  35.       vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
  36.   
  37.       function = (IO$_READLBLK | IO$M_EXTEND);
  38. *** ../vim-6.3.076/src/version.c    Tue Jun  7 11:11:33 2005
  39. --- src/version.c    Tue Jun 14 14:02:57 2005
  40. ***************
  41. *** 643,644 ****
  42. --- 643,646 ----
  43.   {   /* Add new patch number below this line */
  44. + /**/
  45. +     77,
  46.   /**/
  47.  
  48. -- 
  49. From "know your smileys":
  50.  !-|    I-am-a-Cylon-Centurian-with-one-red-eye-bouncing-back-and-forth
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  55.  \\\     Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html   ///
  56.