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.1.187 < prev    next >
Encoding:
Internet Message Format  |  2002-09-19  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.187
  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.1.187
  11. Problem:    Using ":doarg" with 'hidden' set and the current file is the only
  12.         argument and was modified gives an error message. (Preben
  13.         Guldberg)
  14. Solution:   Don't try re-editing the same file.
  15. Files:        src/ex_cmds2.c
  16.  
  17.  
  18. *** ../vim61.186/src/ex_cmds2.c    Sat Sep  7 17:16:30 2002
  19. --- src/ex_cmds2.c    Thu Sep 19 23:48:10 2002
  20. ***************
  21. *** 1459,1465 ****
  22.           /* go to argument "i" */
  23.           if (i == ARGCOUNT)
  24.               break;
  25. !         do_argfile(eap, i);
  26.           if (curwin->w_arg_idx != i)
  27.               break;
  28.           ++i;
  29. --- 1459,1468 ----
  30.           /* go to argument "i" */
  31.           if (i == ARGCOUNT)
  32.               break;
  33. !         /* Don't call do_argfile() when already there, it will try
  34. !          * reloading the file. */
  35. !         if (curwin->w_arg_idx != i)
  36. !             do_argfile(eap, i);
  37.           if (curwin->w_arg_idx != i)
  38.               break;
  39.           ++i;
  40. *** ../vim61.186/src/version.c    Tue Sep 17 21:36:54 2002
  41. --- src/version.c    Fri Sep 20 21:40:52 2002
  42. ***************
  43. *** 608,609 ****
  44. --- 608,611 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     187,
  48.   /**/
  49.  
  50. -- 
  51. hundred-and-one symptoms of being an internet addict:
  52. 24. You realize there is not a sound in the house and you have no idea where
  53.     your children are.
  54.  
  55.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  56. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  57. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  58.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  59.