]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.4.631 v7.4.631
authorBram Moolenaar <Bram@vim.org>
Tue, 17 Feb 2015 10:11:48 +0000 (11:11 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 17 Feb 2015 10:11:48 +0000 (11:11 +0100)
Problem:    The default conceal character is documented to be a space but it's
            initially a dash. (Christian Brabandt)
Solution:   Make the intial value a space.

src/globals.h
src/version.c

index 474f74fc41d627af60183c1cef5c635cdaf84424..759c51016ebd4fca818662205831630ff0dbe28f 100644 (file)
@@ -1167,7 +1167,7 @@ EXTERN int        lcs_tab1 INIT(= NUL);
 EXTERN int     lcs_tab2 INIT(= NUL);
 EXTERN int     lcs_trail INIT(= NUL);
 #ifdef FEAT_CONCEAL
-EXTERN int     lcs_conceal INIT(= '-');
+EXTERN int     lcs_conceal INIT(= ' ');
 #endif
 
 #if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT) \
index 4fb12302cba1b18d06c4d99250652d6c315f224d..03507f61cdef169d09a8cf049127fe87588a1cf1 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    631,
 /**/
     630,
 /**/