From b9464821901623f983528acaed9e4dc2cea7387b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 10 May 2018 15:09:49 +0200 Subject: patch 8.0.1809: various typos Problem: Various typos. Solution: Correct the mistakes, change "cursur" to "cursor". (closes #2887) --- src/edit.c | 2 +- src/normal.c | 4 ++-- src/proto/screen.pro | 2 +- src/screen.c | 2 +- src/ui.c | 2 +- src/version.c | 2 ++ 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/edit.c b/src/edit.c index 9b7206410..ef4c98d29 100644 --- a/src/edit.c +++ b/src/edit.c @@ -431,7 +431,7 @@ edit( #ifdef FEAT_CONCEAL /* Check if the cursor line needs redrawing before changing State. If * 'concealcursor' is "n" it needs to be redrawn without concealing. */ - conceal_check_cursur_line(); + conceal_check_cursor_line(); #endif #ifdef FEAT_MOUSE diff --git a/src/normal.c b/src/normal.c index be0e75e7e..3b958a5b5 100644 --- a/src/normal.c +++ b/src/normal.c @@ -7797,7 +7797,7 @@ n_start_visual_mode(int c) { #ifdef FEAT_CONCEAL /* Check for redraw before changing the state. */ - conceal_check_cursur_line(); + conceal_check_cursor_line(); #endif VIsual_mode = c; @@ -7824,7 +7824,7 @@ n_start_visual_mode(int c) #endif #ifdef FEAT_CONCEAL /* Check for redraw after changing the state. */ - conceal_check_cursur_line(); + conceal_check_cursor_line(); #endif if (p_smd && msg_silent == 0) diff --git a/src/proto/screen.pro b/src/proto/screen.pro index f04fda51e..f690f93d6 100644 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -12,7 +12,7 @@ void redrawWinline(linenr_T lnum, int invalid); void update_curbuf(int type); int update_screen(int type_arg); int conceal_cursor_line(win_T *wp); -void conceal_check_cursur_line(void); +void conceal_check_cursor_line(void); void update_single_line(win_T *wp, linenr_T lnum); void update_debug_sign(buf_T *buf, linenr_T lnum); void updateWindow(win_T *wp); diff --git a/src/screen.c b/src/screen.c index cff6ae5d3..cac5a3a1f 100644 --- a/src/screen.c +++ b/src/screen.c @@ -906,7 +906,7 @@ conceal_cursor_line(win_T *wp) * Check if the cursor line needs to be redrawn because of 'concealcursor'. */ void -conceal_check_cursur_line(void) +conceal_check_cursor_line(void) { if (curwin->w_p_cole > 0 && conceal_cursor_line(curwin)) { diff --git a/src/ui.c b/src/ui.c index bb038801a..05e82e6c7 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1971,7 +1971,7 @@ ui_cursor_shape_forced(int forced) # endif # ifdef FEAT_CONCEAL - conceal_check_cursur_line(); + conceal_check_cursor_line(); # endif } diff --git a/src/version.c b/src/version.c index db47bea9e..b71b384f1 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1809, /**/ 1808, /**/ -- cgit v1.2.1