|
Karsten Hopp |
d8a159 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
d8a159 |
Subject: Patch 7.3.616
|
|
Karsten Hopp |
d8a159 |
Fcc: outbox
|
|
Karsten Hopp |
d8a159 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
d8a159 |
Mime-Version: 1.0
|
|
Karsten Hopp |
d8a159 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
d8a159 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
d8a159 |
------------
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
Patch 7.3.616 (after 7.3.610)
|
|
Karsten Hopp |
d8a159 |
Problem: Can't compile without +visual.
|
|
Karsten Hopp |
d8a159 |
Solution: Add #ifdef.
|
|
Karsten Hopp |
d8a159 |
Files: src/normal.c
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
*** ../vim-7.3.615/src/normal.c 2012-07-25 15:06:20.000000000 +0200
|
|
Karsten Hopp |
d8a159 |
--- src/normal.c 2012-07-27 20:52:01.000000000 +0200
|
|
Karsten Hopp |
d8a159 |
***************
|
|
Karsten Hopp |
d8a159 |
*** 8002,8008 ****
|
|
Karsten Hopp |
d8a159 |
--- 8002,8010 ----
|
|
Karsten Hopp |
d8a159 |
*/
|
|
Karsten Hopp |
d8a159 |
case 'N':
|
|
Karsten Hopp |
d8a159 |
case 'n':
|
|
Karsten Hopp |
d8a159 |
+ #ifdef FEAT_VISUAL
|
|
Karsten Hopp |
d8a159 |
if (!current_search(cap->count1, cap->nchar == 'n'))
|
|
Karsten Hopp |
d8a159 |
+ #endif
|
|
Karsten Hopp |
d8a159 |
beep_flush();
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
break;
|
|
Karsten Hopp |
d8a159 |
*** ../vim-7.3.615/src/version.c 2012-07-25 17:22:17.000000000 +0200
|
|
Karsten Hopp |
d8a159 |
--- src/version.c 2012-07-27 20:52:58.000000000 +0200
|
|
Karsten Hopp |
d8a159 |
***************
|
|
Karsten Hopp |
d8a159 |
*** 716,717 ****
|
|
Karsten Hopp |
d8a159 |
--- 716,719 ----
|
|
Karsten Hopp |
d8a159 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
d8a159 |
+ /**/
|
|
Karsten Hopp |
d8a159 |
+ 616,
|
|
Karsten Hopp |
d8a159 |
/**/
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
--
|
|
Karsten Hopp |
d8a159 |
The CIA drives around in cars with the "Intel inside" logo.
|
|
Karsten Hopp |
d8a159 |
|
|
Karsten Hopp |
d8a159 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
d8a159 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
d8a159 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
d8a159 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|