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.2 / 7.2.032 < prev    next >
Encoding:
Internet Message Format  |  2008-11-08  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.032
  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.2.032 (after 7.2.031)
  11. Problem:    Can't build with EXITFREE defined. (Dominique Pelle)
  12. Solution:   Change vv_string to vv_str.
  13. Files:        src/eval.c
  14.  
  15.  
  16. *** ../vim-7.2.031/src/eval.c    Sun Nov  9 13:43:25 2008
  17. --- src/eval.c    Sun Nov  9 17:16:06 2008
  18. ***************
  19. *** 846,853 ****
  20.       p = &vimvars[i];
  21.       if (p->vv_di.di_tv.v_type == VAR_STRING)
  22.       {
  23. !         vim_free(p->vv_string);
  24. !         p->vv_string = NULL;
  25.       }
  26.       else if (p->vv_di.di_tv.v_type == VAR_LIST)
  27.       {
  28. --- 846,853 ----
  29.       p = &vimvars[i];
  30.       if (p->vv_di.di_tv.v_type == VAR_STRING)
  31.       {
  32. !         vim_free(p->vv_str);
  33. !         p->vv_str = NULL;
  34.       }
  35.       else if (p->vv_di.di_tv.v_type == VAR_LIST)
  36.       {
  37. *** ../vim-7.2.031/src/version.c    Sun Nov  9 13:43:25 2008
  38. --- src/version.c    Sun Nov  9 17:21:00 2008
  39. ***************
  40. *** 678,679 ****
  41. --- 678,681 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     32,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 218. Your spouse hands you a gift wrapped magnet with your PC's name
  50.      on it and you accuse him or her of genocide.
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  55.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  56.