|
Karsten Hopp |
897c47 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
897c47 |
Subject: Patch 7.4.472
|
|
Karsten Hopp |
897c47 |
Fcc: outbox
|
|
Karsten Hopp |
897c47 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
897c47 |
Mime-Version: 1.0
|
|
Karsten Hopp |
897c47 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
897c47 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
897c47 |
------------
|
|
Karsten Hopp |
897c47 |
|
|
Karsten Hopp |
897c47 |
Patch 7.4.472
|
|
Karsten Hopp |
897c47 |
Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak
|
|
Karsten Hopp |
897c47 |
is set and list is not.
|
|
Karsten Hopp |
897c47 |
Solution: Only draw this character when 'list' is on. (Christian Brabandt)
|
|
Karsten Hopp |
897c47 |
Files: src/screen.c
|
|
Karsten Hopp |
897c47 |
|
|
Karsten Hopp |
897c47 |
|
|
Karsten Hopp |
897c47 |
*** ../vim-7.4.471/src/screen.c 2014-10-09 13:22:41.804886993 +0200
|
|
Karsten Hopp |
897c47 |
--- src/screen.c 2014-10-10 15:22:41.589091447 +0200
|
|
Karsten Hopp |
897c47 |
***************
|
|
Karsten Hopp |
897c47 |
*** 4901,4906 ****
|
|
Karsten Hopp |
897c47 |
--- 4901,4907 ----
|
|
Karsten Hopp |
897c47 |
* special character (via 'listchars' option "precedes:<char>".
|
|
Karsten Hopp |
897c47 |
*/
|
|
Karsten Hopp |
897c47 |
if (lcs_prec_todo != NUL
|
|
Karsten Hopp |
897c47 |
+ && wp->w_p_list
|
|
Karsten Hopp |
897c47 |
&& (wp->w_p_wrap ? wp->w_skipcol > 0 : wp->w_leftcol > 0)
|
|
Karsten Hopp |
897c47 |
#ifdef FEAT_DIFF
|
|
Karsten Hopp |
897c47 |
&& filler_todo <= 0
|
|
Karsten Hopp |
897c47 |
*** ../vim-7.4.471/src/version.c 2014-10-09 17:05:51.948916242 +0200
|
|
Karsten Hopp |
897c47 |
--- src/version.c 2014-10-10 15:22:06.405091370 +0200
|
|
Karsten Hopp |
897c47 |
***************
|
|
Karsten Hopp |
897c47 |
*** 743,744 ****
|
|
Karsten Hopp |
897c47 |
--- 743,746 ----
|
|
Karsten Hopp |
897c47 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
897c47 |
+ /**/
|
|
Karsten Hopp |
897c47 |
+ 472,
|
|
Karsten Hopp |
897c47 |
/**/
|
|
Karsten Hopp |
897c47 |
|
|
Karsten Hopp |
897c47 |
--
|
|
Karsten Hopp |
897c47 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
897c47 |
251. You've never seen your closest friends who usually live WAY too far away.
|
|
Karsten Hopp |
897c47 |
|
|
Karsten Hopp |
897c47 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
897c47 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
897c47 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
897c47 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|