]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.091
- updated to 1.15
[packages/vim.git] / 7.0.091
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.091
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.0.091
11Problem: Using winrestview() while 'showcmd' is set causes the cursor to be
12 displayed in the wrong position. (Yakov Lerner)
13Solution: Set the window topline properly.
14Files: src/eval.c
15
16
17*** ../vim-7.0.090/src/eval.c Tue Sep 5 12:57:14 2006
18--- src/eval.c Tue Sep 5 21:21:37 2006
19***************
20*** 16225,16231 ****
21 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
22 curwin->w_set_curswant = FALSE;
23
24! curwin->w_topline = get_dict_number(dict, (char_u *)"topline");
25 #ifdef FEAT_DIFF
26 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
27 #endif
28--- 16225,16231 ----
29 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
30 curwin->w_set_curswant = FALSE;
31
32! set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
33 #ifdef FEAT_DIFF
34 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
35 #endif
36*** ../vim-7.0.090/src/version.c Tue Sep 5 20:56:11 2006
37--- src/version.c Wed Sep 6 22:12:31 2006
38***************
39*** 668,669 ****
40--- 668,671 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 91,
44 /**/
45
46--
47Shit makes the flowers grow and that's beautiful
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ download, build and distribute -- http://www.A-A-P.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.031067 seconds and 4 git commands to generate.