]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.036
- updated to 6.3.052
[packages/vim.git] / 6.3.036
CommitLineData
c9e2e521
AG
1To: vim-dev@vim.org
2Subject: Patch 6.3.036
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.3.036
11Problem: ml_get errors when the whole file is a fold, switching
12 'foldmethod' and doing "zj". (Christian J. Robinson) Was not
13 deleting the fold but creating a fold with zero lines.
14Solution: Delete the fold properly.
15Files: src/fold.c
16
17
18*** ../vim-6.3.035/src/fold.c Wed Jun 9 14:56:26 2004
19--- src/fold.c Sat Dec 4 14:54:30 2004
20***************
21*** 2795,2801 ****
22 {
23 /* Found an entry below top. */
24 fold_changed = TRUE;
25! if (fp->fd_top + fp->fd_len > bot)
26 {
27 /* 5: Make fold that includes bot start below bot. */
28 foldMarkAdjustRecurse(&fp->fd_nested,
29--- 2795,2801 ----
30 {
31 /* Found an entry below top. */
32 fold_changed = TRUE;
33! if (fp->fd_top + fp->fd_len - 1 > bot)
34 {
35 /* 5: Make fold that includes bot start below bot. */
36 foldMarkAdjustRecurse(&fp->fd_nested,
37*** ../vim-6.3.035/src/version.c Mon Nov 22 10:44:14 2004
38--- src/version.c Sat Dec 4 14:55:28 2004
39***************
40*** 643,644 ****
41--- 643,646 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 36,
45 /**/
46
47--
48If you had to identify, in one word, the reason why the
49human race has not achieved, and never will achieve, its
50full potential, that word would be "meetings."
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
55 \\\ Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html ///
This page took 0.037015 seconds and 4 git commands to generate.