]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.189
- new
[packages/vim.git] / 7.3.189
CommitLineData
bb987377
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.189
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.189 (after 7.3.186)
11Problem: Can't build without +clipboard feature. (Christian Ebert)
12Solution: Add the missing #ifdef.
13Files: src/normal.c
14
15
16*** ../vim-7.3.188/src/normal.c 2011-05-10 16:12:40.000000000 +0200
17--- src/normal.c 2011-05-10 17:25:26.000000000 +0200
18***************
19*** 1204,1212 ****
20--- 1204,1215 ----
21 #ifdef FEAT_EVAL
22 {
23 int regname = 0;
24+
25 /* Adjust the register according to 'clipboard', so that when
26 * "unnamed" is present it becomes '*' or '+' instead of '"'. */
27+ # ifdef FEAT_CLIPBOARD
28 adjust_clip_reg(&regname);
29+ # endif
30 set_reg_var(regname);
31 }
32 #endif
33*** ../vim-7.3.188/src/version.c 2011-05-10 17:21:34.000000000 +0200
34--- src/version.c 2011-05-10 17:29:21.000000000 +0200
35***************
36*** 716,717 ****
37--- 716,719 ----
38 { /* Add new patch number below this line */
39+ /**/
40+ 189,
41 /**/
42
43--
44If your nose runs, and your feet smell, you might be upside down.
45
46 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
47/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
48\\\ an exciting new programming language -- http://www.Zimbu.org ///
49 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.120575 seconds and 4 git commands to generate.