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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.140
  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.140
  11. Problem:    Crash when drawing the "$" at end-of-line for list mode just after
  12.         the window border and 'cursorline' is set.
  13. Solution:   Don't check for 'cursorline'. (Quentin Carbonneaux)
  14. Files:        src/screen.c
  15.  
  16.  
  17. *** ../vim-7.3.139/src/screen.c    2011-02-09 17:09:26.000000000 +0100
  18. --- src/screen.c    2011-03-22 13:29:04.000000000 +0100
  19. ***************
  20. *** 5099,5109 ****
  21.   #ifdef FEAT_DIFF
  22.               || filler_todo > 0
  23.   #endif
  24. !             || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str
  25. ! #ifdef FEAT_SYN_HL
  26. !                && !wp->w_p_cul
  27. ! #endif
  28. !             )
  29.               || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
  30.           )
  31.       {
  32. --- 5099,5105 ----
  33.   #ifdef FEAT_DIFF
  34.               || filler_todo > 0
  35.   #endif
  36. !             || (wp->w_p_list && lcs_eol != NUL && p_extra != at_end_str)
  37.               || (n_extra != 0 && (c_extra != NUL || *p_extra != NUL)))
  38.           )
  39.       {
  40. *** ../vim-7.3.139/src/version.c    2011-03-22 13:07:19.000000000 +0100
  41. --- src/version.c    2011-03-22 13:27:26.000000000 +0100
  42. ***************
  43. *** 716,717 ****
  44. --- 716,719 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     140,
  48.   /**/
  49.  
  50. -- 
  51. Lawmakers made it obligatory for everybody to take at least one bath
  52. each week -- on Saturday night.
  53.         [real standing law in Vermont, United States of America]
  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.