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.319 < prev    next >
Encoding:
Internet Message Format  |  2003-02-03  |  2.0 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.319
  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.319 (depends on 6.1.276)
  11. Problem:    Using "--remote +cmd file" does not execute "cmd".
  12. Solution:   Call inputrestore() in the same command line as inputsave(),
  13.         otherwise it will never get executed.
  14. Files:        src/main.c
  15.  
  16.  
  17. *** ../vim61.318/src/main.c    Sun Jan  5 22:14:46 2003
  18. --- src/main.c    Tue Feb  4 20:02:09 2003
  19. ***************
  20. *** 2861,2867 ****
  21.       }
  22.       /* The :drop commands goes to Insert mode when 'insertmode' is set, use
  23.        * CTRL-\ CTRL-N again. */
  24. !     ga_concat(&ga, (char_u *)"<CR><C-\\><C-N>:if exists('*inputrestore')|call inputrestore()|endif|cd -");
  25.       if (sendReply)
  26.       ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
  27.       if (inicmd != NULL)
  28. --- 2861,2868 ----
  29.       }
  30.       /* The :drop commands goes to Insert mode when 'insertmode' is set, use
  31.        * CTRL-\ CTRL-N again. */
  32. !     ga_concat(&ga, (char_u *)"|if exists('*inputrestore')|call inputrestore()|endif<CR>");
  33. !     ga_concat(&ga, (char_u *)"<C-\\><C-N>:cd -");
  34.       if (sendReply)
  35.       ga_concat(&ga, (char_u *)"<CR>:call SetupRemoteReplies()");
  36.       if (inicmd != NULL)
  37. *** ../vim61.318/src/version.c    Mon Feb  3 21:48:50 2003
  38. --- src/version.c    Tue Feb  4 20:04:26 2003
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     319,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 115. You are late picking up your kid from school and try to explain
  50.      to the teacher you were stuck in Web traffic.
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  54. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  55.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  56.