@@ -0,0 +1,50 @@
|
|
1
|
+
To: vim_dev@googlegroups.com
|
2
|
+
Subject: Patch 7.4.758
|
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.758
|
11
|
+
Problem: When 'conceallevel' is 1 and quitting the command-line window with
|
12
|
+
CTRL-C the first character ':' is erased.
|
13
|
+
Solution: Reset 'conceallevel' in the command-line window. (Hirohito
|
14
|
+
Higashi)
|
15
|
+
Files: src/ex_getln.c
|
16
|
+
|
17
|
+
|
18
|
+
*** ../vim-7.4.757/src/ex_getln.c 2015-04-03 17:06:21.744398370 +0200
|
19
|
+
--- src/ex_getln.c 2015-06-25 18:18:53.118270102 +0200
|
20
|
+
***************
|
21
|
+
*** 6611,6616 ****
|
22
|
+
--- 6611,6620 ----
|
23
|
+
/* Don't execute autocommands while deleting the window. */
|
24
|
+
block_autocmds();
|
25
|
+
# endif
|
26
|
+
+ # ifdef FEAT_CONCEAL
|
27
|
+
+ /* Avoid command-line window first character being concealed. */
|
28
|
+
+ curwin->w_p_cole = 0;
|
29
|
+
+ # endif
|
30
|
+
wp = curwin;
|
31
|
+
bp = curbuf;
|
32
|
+
win_goto(old_curwin);
|
33
|
+
*** ../vim-7.4.757/src/version.c 2015-06-25 17:03:32.584666216 +0200
|
34
|
+
--- src/version.c 2015-06-25 18:17:36.035060772 +0200
|
35
|
+
***************
|
36
|
+
*** 743,744 ****
|
37
|
+
--- 743,746 ----
|
38
|
+
{ /* Add new patch number below this line */
|
39
|
+
+ /**/
|
40
|
+
+ 758,
|
41
|
+
/**/
|
42
|
+
|
43
|
+
--
|
44
|
+
You are not really successful until someone claims he sat
|
45
|
+
beside you in school.
|
46
|
+
|
47
|
+
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
48
|
+
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
49
|
+
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
50
|
+
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|