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 / 7.0 / 7.0.145 < prev    next >
Encoding:
Internet Message Format  |  2006-10-16  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.0.145
  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 7.0.145 (after 7.0.142)
  11. Problem:    Compiler warning.
  12. Solution:   Add type cast.
  13. Files:        src/normal.c
  14.  
  15.  
  16. *** ../vim-7.0.144/src/normal.c    Tue Oct 17 16:55:47 2006
  17. --- src/normal.c    Tue Oct 17 22:37:42 2006
  18. ***************
  19. *** 2387,2393 ****
  20.           if (VIsual_select)
  21.           {
  22.               stuffcharReadbuff(Ctrl_G);
  23. !             stuffReadbuff("\"+p");
  24.           }
  25.           else
  26.           {
  27. --- 2387,2393 ----
  28.           if (VIsual_select)
  29.           {
  30.               stuffcharReadbuff(Ctrl_G);
  31. !             stuffReadbuff((char_u *)"\"+p");
  32.           }
  33.           else
  34.           {
  35. *** ../vim-7.0.144/src/version.c    Tue Oct 17 18:50:15 2006
  36. --- src/version.c    Tue Oct 17 22:38:21 2006
  37. ***************
  38. *** 668,669 ****
  39. --- 668,671 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     145,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 59. Your wife says communication is important in a marriage...so you buy
  48.     another computer and install a second phone line so the two of you can
  49.     chat.
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  53. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  54.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  55.