]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - vim/patches/vim-7.3.453.patch0
Merge remote-tracking branch 'stevee/openvswitch-systemd'
[people/amarx/ipfire-3.x.git] / vim / patches / vim-7.3.453.patch0
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.453
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.453
11 Problem: Pasting in the command line is slow.
12 Solution: Don't redraw if there is another character to read. (Dominique
13 Pelle)
14 Files: src/ex_getln.c
15
16
17 *** ../vim-7.3.452/src/ex_getln.c 2012-02-22 14:58:24.000000000 +0100
18 --- src/ex_getln.c 2012-02-22 17:53:32.000000000 +0100
19 ***************
20 *** 1852,1859 ****
21 # endif
22 )
23 /* Always redraw the whole command line to fix shaping and
24 ! * right-left typing. Not efficient, but it works. */
25 ! redrawcmd();
26 #endif
27 }
28
29 --- 1852,1862 ----
30 # endif
31 )
32 /* Always redraw the whole command line to fix shaping and
33 ! * right-left typing. Not efficient, but it works.
34 ! * Do it only when there are no characters left to read
35 ! * to avoid useless intermediate redraws. */
36 ! if (vpeekc() == NUL)
37 ! redrawcmd();
38 #endif
39 }
40
41 *** ../vim-7.3.452/src/version.c 2012-02-22 17:37:55.000000000 +0100
42 --- src/version.c 2012-02-22 17:56:59.000000000 +0100
43 ***************
44 *** 716,717 ****
45 --- 716,719 ----
46 { /* Add new patch number below this line */
47 + /**/
48 + 453,
49 /**/
50
51 --
52 From "know your smileys":
53 <<<:-{ Worf (Never smiles anyways, so he's a bad smiley)
54
55 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
56 /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57 \\\ an exciting new programming language -- http://www.Zimbu.org ///
58 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///