]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.220
- fix for current libselinux
[packages/vim.git] / 6.2.220
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.220
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.220
11 Problem:    When a Vim server runs in a console a remote command isn't handled
12             before a key is typed.  (Joshua Neuheisel)
13 Solution:   Don't try reading more input when a client-server command has been
14             received.
15 Files:      src/os_unix.c
16
17
18 *** ../vim-6.2.219/src/os_unix.c        Sun Feb  1 19:56:37 2004
19 --- src/os_unix.c       Sun Feb  1 20:05:07 2004
20 ***************
21 *** 383,388 ****
22 --- 383,393 ----
23         if (do_resize)      /* interrupted by SIGWINCH signal */
24             continue;
25   
26 + #ifdef FEAT_CLIENTSERVER
27 +       if (received_from_client)
28 +           return 0;       /* Input was put directly in typeahead buffer */
29 + #endif
30
31         /*
32          * For some terminals we only get one character at a time.
33          * We want the get all available characters, so we could keep on
34 *** ../vim-6.2.219/src/version.c        Sun Feb  1 20:02:19 2004
35 --- src/version.c       Sun Feb  1 20:06:15 2004
36 ***************
37 *** 639,640 ****
38 --- 639,642 ----
39   {   /* Add new patch number below this line */
40 + /**/
41 +     220,
42   /**/
43
44 -- 
45 hundred-and-one symptoms of being an internet addict:
46 11. You find yourself typing "com" after every period when using a word
47     processor.com
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
52  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.036813 seconds and 3 git commands to generate.