]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.257
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.257
CommitLineData
ffd6c6e3
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.257
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.257 (after 6.2.250)
11Problem: Signs are deleted for ":bdel", but they could still be useful.
12Solution: Delete signs only for ":bwipe".
13Files: src/buffer.c
14
15
16*** ../vim-6.2.256/src/buffer.c Tue Feb 10 19:38:20 2004
17--- src/buffer.c Fri Feb 13 11:02:10 2004
18***************
19*** 564,572 ****
20 #ifdef FEAT_SYN_HL
21 syntax_clear(buf); /* reset syntax info */
22 #endif
23- #ifdef FEAT_SIGNS
24- buf_delete_signs(buf); /* delete any signs */
25- #endif
26 }
27
28 /*
29--- 564,569 ----
30***************
31*** 608,613 ****
32--- 605,613 ----
33 #endif
34 #ifdef FEAT_USR_CMDS
35 uc_clear(&buf->b_ucmds); /* clear local user commands */
36+ #endif
37+ #ifdef FEAT_SIGNS
38+ buf_delete_signs(buf); /* delete any signs */
39 #endif
40 #ifdef FEAT_LOCALMAP
41 map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE); /* clear local mappings */
42*** ../vim-6.2.256/src/version.c Sun Feb 15 13:26:35 2004
43--- src/version.c Sun Feb 15 13:28:24 2004
44***************
45*** 639,640 ****
46--- 639,642 ----
47 { /* Add new patch number below this line */
48+ /**/
49+ 257,
50 /**/
51
52--
53hundred-and-one symptoms of being an internet addict:
54144. You eagerly await the update of the "Cool Site of the Day."
55
56 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
57/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
58\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
59 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.037187 seconds and 4 git commands to generate.