comparison src/normal.c @ 13876:156ebdcb8ef5 v8.0.1809

patch 8.0.1809: various typos commit https://github.com/vim/vim/commit/b9464821901623f983528acaed9e4dc2cea7387b Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 10 15:09:49 2018 +0200 patch 8.0.1809: various typos Problem: Various typos. Solution: Correct the mistakes, change "cursur" to "cursor". (closes https://github.com/vim/vim/issues/2887)
author Christian Brabandt <cb@256bit.org>
date Thu, 10 May 2018 15:15:04 +0200
parents cc21507ee4b1
children e124262d435e
comparison
equal deleted inserted replaced
13875:a5ac84b6339e 13876:156ebdcb8ef5
7795 static void 7795 static void
7796 n_start_visual_mode(int c) 7796 n_start_visual_mode(int c)
7797 { 7797 {
7798 #ifdef FEAT_CONCEAL 7798 #ifdef FEAT_CONCEAL
7799 /* Check for redraw before changing the state. */ 7799 /* Check for redraw before changing the state. */
7800 conceal_check_cursur_line(); 7800 conceal_check_cursor_line();
7801 #endif 7801 #endif
7802 7802
7803 VIsual_mode = c; 7803 VIsual_mode = c;
7804 VIsual_active = TRUE; 7804 VIsual_active = TRUE;
7805 VIsual_reselect = TRUE; 7805 VIsual_reselect = TRUE;
7822 #ifdef FEAT_MOUSE 7822 #ifdef FEAT_MOUSE
7823 setmouse(); 7823 setmouse();
7824 #endif 7824 #endif
7825 #ifdef FEAT_CONCEAL 7825 #ifdef FEAT_CONCEAL
7826 /* Check for redraw after changing the state. */ 7826 /* Check for redraw after changing the state. */
7827 conceal_check_cursur_line(); 7827 conceal_check_cursor_line();
7828 #endif 7828 #endif
7829 7829
7830 if (p_smd && msg_silent == 0) 7830 if (p_smd && msg_silent == 0)
7831 redraw_cmdline = TRUE; /* show visual mode later */ 7831 redraw_cmdline = TRUE; /* show visual mode later */
7832 #ifdef FEAT_CLIPBOARD 7832 #ifdef FEAT_CLIPBOARD