]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.062
- typo
[packages/vim.git] / 7.1.062
CommitLineData
6577e359 1To: vim-dev@vim.org
2Subject: patch 7.1.062
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 7.1.062 (after 7.1.038)
11Problem: Indents of C comments can be wrong. (John Mullin)
12Solution: Adjust ind_len. (Chris Lubinski)
13Files: src/misc1.c
14
15
16*** ../vim-7.1.061/src/misc1.c Mon Aug 6 22:27:13 2007
17--- src/misc1.c Fri Aug 10 19:41:42 2007
18***************
19*** 222,228 ****
20 * than old) */
21 while (vim_iswhite(*p))
22 (void)*p++;
23! todo = size-ind_done;
24 }
25 else
26 {
27--- 222,231 ----
28 * than old) */
29 while (vim_iswhite(*p))
30 (void)*p++;
31! todo = size - ind_done;
32! ind_len += todo; /* Set total length of indent in characters,
33! * which may have been undercounted until now */
34!
35 }
36 else
37 {
38*** ../vim-7.1.061/src/version.c Sat Aug 11 13:57:31 2007
39--- src/version.c Sat Aug 11 14:30:52 2007
40***************
41*** 668,669 ****
42--- 668,671 ----
43 { /* Add new patch number below this line */
44+ /**/
45+ 62,
46 /**/
47
48--
49hundred-and-one symptoms of being an internet addict:
50120. You ask a friend, "What's that big shiny thing?" He says, "It's the sun."
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ download, build and distribute -- http://www.A-A-P.org ///
55 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.525021 seconds and 4 git commands to generate.