]> git.ipfire.org Git - ipfire-3.x.git/blame - vim/patches/vim-7.3.453.patch0
python3: Update to 3.6.3
[ipfire-3.x.git] / vim / patches / vim-7.3.453.patch0
CommitLineData
c6060300
MT
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.453
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.453
11Problem: Pasting in the command line is slow.
12Solution: Don't redraw if there is another character to read. (Dominique
13 Pelle)
14Files: 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--
52From "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 ///