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.3 / 7.3.783 < prev    next >
Encoding:
Internet Message Format  |  2013-01-23  |  1.3 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.783
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.783
  11. Problem:    Crash when mark is not set. (Dominique Pelle)
  12. Solution:   Check for NULL.
  13. Files:        src/normal.c
  14.  
  15.  
  16. *** ../vim-7.3.782/src/normal.c    2013-01-17 13:24:00.000000000 +0100
  17. --- src/normal.c    2013-01-24 20:57:53.000000000 +0100
  18. ***************
  19. *** 7552,7557 ****
  20. --- 7552,7558 ----
  21.   #endif
  22.   #ifdef FEAT_FOLDING
  23.       if (cap->oap->op_type == OP_NOP
  24. +         && pos != NULL
  25.           && (pos == (pos_T *)-1 || !equalpos(old_cursor, *pos))
  26.           && (fdo_flags & FDO_MARK)
  27.           && old_KeyTyped)
  28. *** ../vim-7.3.782/src/version.c    2013-01-23 18:37:31.000000000 +0100
  29. --- src/version.c    2013-01-24 20:58:36.000000000 +0100
  30. ***************
  31. *** 727,728 ****
  32. --- 727,730 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     783,
  36.   /**/
  37.  
  38. -- 
  39. Shit makes the flowers grow and that's beautiful
  40.  
  41.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  42. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  43. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  44.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  45.