From 38c52c63accab5ea2a76bebaa5ccd5a089fa17ab Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 11 Sep 2018 23:00:12 -0400 Subject: vim-patch:8.0.1809: various typos Problem: Various typos. Solution: Correct the mistakes, change "cursur" to "cursor". (closes vim/vim#2887) https://github.com/vim/vim/commit/b9464821901623f983528acaed9e4dc2cea7387b --- src/nvim/normal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/normal.c') diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 09444ace0f..65cc7d1db8 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -6497,7 +6497,7 @@ void may_start_select(int c) static void n_start_visual_mode(int c) { /* Check for redraw before changing the state. */ - conceal_check_cursur_line(); + conceal_check_cursor_line(); VIsual_mode = c; VIsual_active = true; @@ -6515,7 +6515,7 @@ static void n_start_visual_mode(int c) setmouse(); /* Check for redraw after changing the state. */ - conceal_check_cursur_line(); + conceal_check_cursor_line(); if (p_smd && msg_silent == 0) redraw_cmdline = true; /* show visual mode later */ -- cgit