]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.633
- add patches 7.3.619-743
[packages/vim.git] / 7.3.633
CommitLineData
5a088057
KK
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.633
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.633
11Problem: Selection remains displayed as selected after selecting another
12 text.
13Solution: Call xterm_update() before select(). (Andrew Pimlott)
14Files: src/os_unix.c
15
16
17*** ../vim-7.3.632/src/os_unix.c 2012-08-15 16:20:59.000000000 +0200
18--- src/os_unix.c 2012-08-15 17:15:58.000000000 +0200
19***************
20*** 5196,5201 ****
21--- 5196,5205 ----
22 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
23 if (maxfd < ConnectionNumber(xterm_dpy))
24 maxfd = ConnectionNumber(xterm_dpy);
25+
26+ /* An event may have already been read but not handled. In
27+ * particulary, XFlush may cause this. */
28+ xterm_update();
29 }
30 # endif
31 # ifdef FEAT_MOUSE_GPM
32***************
33*** 5216,5229 ****
34 maxfd = xsmp_icefd;
35 }
36 # endif
37! #ifdef FEAT_NETBEANS_INTG
38 if (nb_fd != -1)
39 {
40 FD_SET(nb_fd, &rfds);
41 if (maxfd < nb_fd)
42 maxfd = nb_fd;
43 }
44! #endif
45
46 # ifdef OLD_VMS
47 /* Old VMS as v6.2 and older have broken select(). It waits more than
48--- 5220,5233 ----
49 maxfd = xsmp_icefd;
50 }
51 # endif
52! # ifdef FEAT_NETBEANS_INTG
53 if (nb_fd != -1)
54 {
55 FD_SET(nb_fd, &rfds);
56 if (maxfd < nb_fd)
57 maxfd = nb_fd;
58 }
59! # endif
60
61 # ifdef OLD_VMS
62 /* Old VMS as v6.2 and older have broken select(). It waits more than
63*** ../vim-7.3.632/src/version.c 2012-08-15 16:20:59.000000000 +0200
64--- src/version.c 2012-08-15 17:22:17.000000000 +0200
65***************
66*** 721,722 ****
67--- 721,724 ----
68 { /* Add new patch number below this line */
69+ /**/
70+ 633,
71 /**/
72
73--
74hundred-and-one symptoms of being an internet addict:
75245. You use Real Audio to listen to a radio station from a distant
76 city rather than turn on your stereo system.
77
78 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
79/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
80\\\ an exciting new programming language -- http://www.Zimbu.org ///
81 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.09945 seconds and 4 git commands to generate.