]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.521
- new
[packages/vim.git] / 6.2.521
CommitLineData
fe53742a
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.521
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.521
11Problem: When using silent Ex mode the "changing a readonly file" warning
12 is omitted but the one second wait isn't. (Yakov Lerner)
13Solution: Skip the delay when "silent_mode" is set.
14Files: src/misc1.c
15
16
17*** ../vim-6.2.520/src/misc1.c Mon Apr 26 19:00:58 2004
18--- src/misc1.c Sun May 2 16:15:50 2004
19***************
20*** 2774,2780 ****
21 hl_attr(HLF_W) | MSG_HIST);
22 msg_clr_eos();
23 (void)msg_end();
24! if (msg_silent == 0)
25 {
26 out_flush();
27 ui_delay(1000L, TRUE); /* give the user time to think about it */
28--- 2774,2780 ----
29 hl_attr(HLF_W) | MSG_HIST);
30 msg_clr_eos();
31 (void)msg_end();
32! if (msg_silent == 0 && !silent_mode)
33 {
34 out_flush();
35 ui_delay(1000L, TRUE); /* give the user time to think about it */
36*** ../vim-6.2.520/src/version.c Sun May 2 16:57:24 2004
37--- src/version.c Sun May 2 16:59:21 2004
38***************
39*** 639,640 ****
40--- 639,642 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 521,
44 /**/
45
46--
47From "know your smileys":
48 ...---... SOS
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
53 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.0369969999999999 seconds and 4 git commands to generate.