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.4 / 7.4.371 < prev    next >
Encoding:
Internet Message Format  |  2014-07-15  |  1.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.371
  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.4.371
  11. Problem:    When 'linebreak' is set control characters are not correctly
  12.         displayed. (Kimmy Lindvall)
  13. Solution:   Set n_extra. (Christian Brabandt)
  14. Files:        src/screen.c
  15.  
  16.  
  17. *** ../vim-7.4.370/src/screen.c    2014-07-09 20:20:40.359620108 +0200
  18. --- src/screen.c    2014-07-16 17:12:38.599557147 +0200
  19. ***************
  20. *** 4646,4651 ****
  21. --- 4646,4653 ----
  22.           else if (c != NUL)
  23.           {
  24.               p_extra = transchar(c);
  25. +             if (n_extra == 0)
  26. +             n_extra = byte2cells(c) - 1;
  27.   #ifdef FEAT_RIGHTLEFT
  28.               if ((dy_flags & DY_UHEX) && wp->w_p_rl)
  29.               rl_mirror(p_extra);    /* reverse "<12>" */
  30. *** ../vim-7.4.370/src/version.c    2014-07-16 17:01:38.279570568 +0200
  31. --- src/version.c    2014-07-16 17:13:21.815556269 +0200
  32. ***************
  33. *** 736,737 ****
  34. --- 736,739 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     371,
  38.   /**/
  39.  
  40. -- 
  41. LETTERS TO THE EDITOR (The Times of London)
  42.  
  43. Dear Sir,
  44.  
  45. I am firmly opposed to the spread of microchips either to the home or
  46. to the office. ┬áWe have more than enough of them foisted upon us in
  47. public places. ┬áThey are a disgusting Americanism, and can only result
  48. in the farmers being forced to grow smaller potatoes, which in turn
  49. will cause massive unemployment in the already severely depressed
  50. agricultural industry.
  51.  
  52. Yours faithfully,
  53. ┬á ┬á ┬á ┬á Capt. Quinton D'Arcy, J. P.
  54. ┬á ┬á ┬á ┬á Sevenoaks
  55.  
  56.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  57. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  58. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  59.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  60.