# HG changeset patch # User Christian Brabandt # Date 1525958104 -7200 # Node ID 156ebdcb8ef50d0ddf103ad0e6b66b3e1d94444b # Parent a5ac84b6339e6078ee2d8e3dd98f177eaed7a242 patch 8.0.1809: various typos commit https://github.com/vim/vim/commit/b9464821901623f983528acaed9e4dc2cea7387b Author: Bram Moolenaar 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) diff --git a/src/edit.c b/src/edit.c --- 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 --- 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 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -12,7 +12,7 @@ void redrawWinline(linenr_T lnum, int in 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 --- 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1809, +/**/ 1808, /**/ 1807,