comparison src/normal.c @ 3714:baba6286c91e v7.3.616

updated for version 7.3.616 Problem: Can't compile without +visual. Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Fri, 27 Jul 2012 21:05:54 +0200
parents 9f48a5432997
children 0b1cb3f839c4
comparison
equal deleted inserted replaced
3713:9910cbff5f16 3714:baba6286c91e
8000 * "gn" selects next match 8000 * "gn" selects next match
8001 * "gN" selects previous match 8001 * "gN" selects previous match
8002 */ 8002 */
8003 case 'N': 8003 case 'N':
8004 case 'n': 8004 case 'n':
8005 #ifdef FEAT_VISUAL
8005 if (!current_search(cap->count1, cap->nchar == 'n')) 8006 if (!current_search(cap->count1, cap->nchar == 'n'))
8007 #endif
8006 beep_flush(); 8008 beep_flush();
8007 8009
8008 break; 8010 break;
8009 #endif /* FEAT_VISUAL */ 8011 #endif /* FEAT_VISUAL */
8010 8012