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.2.521 < prev    next >
Encoding:
Internet Message Format  |  2004-05-01  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.521
  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.2.521
  11. Problem:    When using silent Ex mode the "changing a readonly file" warning
  12.         is omitted but the one second wait isn't. (Yakov Lerner)
  13. Solution:   Skip the delay when "silent_mode" is set.
  14. Files:        src/misc1.c
  15.  
  16.  
  17. *** ../vim-6.2.520/src/misc1.c    Mon Apr 26 19:00:58 2004
  18. --- src/misc1.c    Sun May  2 16:15:50 2004
  19. ***************
  20. *** 2774,2780 ****
  21.                              hl_attr(HLF_W) | MSG_HIST);
  22.       msg_clr_eos();
  23.       (void)msg_end();
  24. !     if (msg_silent == 0)
  25.       {
  26.           out_flush();
  27.           ui_delay(1000L, TRUE); /* give the user time to think about it */
  28. --- 2774,2780 ----
  29.                              hl_attr(HLF_W) | MSG_HIST);
  30.       msg_clr_eos();
  31.       (void)msg_end();
  32. !     if (msg_silent == 0 && !silent_mode)
  33.       {
  34.           out_flush();
  35.           ui_delay(1000L, TRUE); /* give the user time to think about it */
  36. *** ../vim-6.2.520/src/version.c    Sun May  2 16:57:24 2004
  37. --- src/version.c    Sun May  2 16:59:21 2004
  38. ***************
  39. *** 639,640 ****
  40. --- 639,642 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     521,
  44.   /**/
  45.  
  46. -- 
  47. From "know your smileys":
  48.  ...---...   SOS
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  53.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  54.