comparison src/normal.c @ 2428:33148c37f3c9 vim73

Changes for VMS. Mostly by Zoltan Arpadffy.
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Jul 2010 19:38:16 +0200
parents 1a9c16dd76d4
children 04dae202d316
comparison
equal deleted inserted replaced
2427:2533a507001f 2428:33148c37f3c9
7647 n_start_visual_mode(c) 7647 n_start_visual_mode(c)
7648 int c; 7648 int c;
7649 { 7649 {
7650 #ifdef FEAT_CONCEAL 7650 #ifdef FEAT_CONCEAL
7651 /* Check for redraw before changing the state. */ 7651 /* Check for redraw before changing the state. */
7652 conceal_check_cursur_line_redraw(); 7652 conceal_check_cursur_line();
7653 #endif 7653 #endif
7654 7654
7655 VIsual_mode = c; 7655 VIsual_mode = c;
7656 VIsual_active = TRUE; 7656 VIsual_active = TRUE;
7657 VIsual_reselect = TRUE; 7657 VIsual_reselect = TRUE;
7671 #ifdef FEAT_MOUSE 7671 #ifdef FEAT_MOUSE
7672 setmouse(); 7672 setmouse();
7673 #endif 7673 #endif
7674 #ifdef FEAT_CONCEAL 7674 #ifdef FEAT_CONCEAL
7675 /* Check for redraw after changing the state. */ 7675 /* Check for redraw after changing the state. */
7676 conceal_check_cursur_line_redraw(); 7676 conceal_check_cursur_line();
7677 #endif 7677 #endif
7678 7678
7679 if (p_smd && msg_silent == 0) 7679 if (p_smd && msg_silent == 0)
7680 redraw_cmdline = TRUE; /* show visual mode later */ 7680 redraw_cmdline = TRUE; /* show visual mode later */
7681 #ifdef FEAT_CLIPBOARD 7681 #ifdef FEAT_CLIPBOARD