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.116 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.116
  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.116
  11. Problem:    'cursorline' is displayed too short when there are concealed
  12.         characters and 'list' is set.  (Dennis Preiser)
  13. Solution:   Check for 'cursorline' when 'list' is set. (Christian Brabandt)
  14. Files:        src/screen.c
  15.  
  16.  
  17. *** ../vim-7.3.115/src/screen.c    2011-02-01 18:01:06.000000000 +0100
  18. --- src/screen.c    2011-02-09 16:59:28.000000000 +0100
  19. ***************
  20. *** 5099,5105 ****
  21.   #ifdef FEAT_DIFF
  22.               || filler_todo > 0
  23.   #endif
  24. !             || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
  25.               || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
  26.           )
  27.       {
  28. --- 5099,5109 ----
  29.   #ifdef FEAT_DIFF
  30.               || filler_todo > 0
  31.   #endif
  32. !             || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str
  33. ! #ifdef FEAT_SYN_HL
  34. !                && !wp->w_p_cul
  35. ! #endif
  36. !             )
  37.               || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
  38.           )
  39.       {
  40. *** ../vim-7.3.115/src/version.c    2011-02-09 16:44:45.000000000 +0100
  41. --- src/version.c    2011-02-09 17:08:58.000000000 +0100
  42. ***************
  43. *** 716,717 ****
  44. --- 716,719 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     116,
  48.   /**/
  49.  
  50. -- 
  51. hundred-and-one symptoms of being an internet addict:
  52. 219. Your spouse has his or her lawyer deliver the divorce papers...
  53.      via e-mail.
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  58.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  59.