]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.285
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.285
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.285
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.285
11 Problem:    GUI: In a single wrapped line that fills the window, "gj" in the
12             last screen line leaves the cursor behind. (Ivan Tarasov)
13 Solution:   Undraw the cursor before scrolling the text up.
14 Files:      src/gui.c
15
16
17 *** ../vim-6.2.284/src/gui.c    Tue Feb 17 21:31:23 2004
18 --- src/gui.c   Fri Feb 20 17:08:50 2004
19 ***************
20 *** 1677,1683 ****
21       void
22   gui_dont_update_cursor()
23   {
24 !     can_update_cursor = FALSE;
25   }
26   
27       void
28 --- 1677,1688 ----
29       void
30   gui_dont_update_cursor()
31   {
32 !     if (gui.in_use)
33 !     {
34 !       /* Undraw the cursor now, we probably can't do it after the change. */
35 !       gui_undraw_cursor();
36 !       can_update_cursor = FALSE;
37 !     }
38   }
39   
40       void
41 *** ../vim-6.2.284/src/version.c        Fri Feb 20 22:11:01 2004
42 --- src/version.c       Fri Feb 20 22:12:27 2004
43 ***************
44 *** 639,640 ****
45 --- 639,642 ----
46   {   /* Add new patch number below this line */
47 + /**/
48 +     285,
49   /**/
50
51 -- 
52 hundred-and-one symptoms of being an internet addict:
53 208. Your goals for the future are obtaining an T1 connection and
54      a 130 gig hard drive.
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 1.18375 seconds and 3 git commands to generate.