aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-03-27 11:09:54 +0100
committerGitHub <noreply@github.com>2019-03-27 11:09:54 +0100
commit2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39 (patch)
tree27b832ee6bf690eecbaa9d296d748c2200d5feba /src
parent281c011d44a5f845d4c5d9cce0d2fc513f70483b (diff)
parentbf2ad145e3340205e304b5aba130952c04fd8473 (diff)
downloadrneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.tar.gz
rneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.tar.bz2
rneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.zip
Merge #9794 from janlazo/vim-8.0.1528
Diffstat (limited to 'src')
-rw-r--r--src/nvim/screen.c14
-rw-r--r--src/nvim/search.c2
-rw-r--r--src/nvim/spell.c2
-rw-r--r--src/nvim/spellfile.c2
4 files changed, 9 insertions, 11 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c
index 28a1b65fff..edddfd8ed3 100644
--- a/src/nvim/screen.c
+++ b/src/nvim/screen.c
@@ -6371,14 +6371,12 @@ void grid_del_lines(ScreenGrid *grid, int row, int line_count, int end, int col,
}
-/*
- * show the current mode and ruler
- *
- * If clear_cmdline is TRUE, clear the rest of the cmdline.
- * If clear_cmdline is FALSE there may be a message there that needs to be
- * cleared only if a mode is shown.
- * Return the length of the message (0 if no message).
- */
+// Show the current mode and ruler.
+//
+// If clear_cmdline is TRUE, clear the rest of the cmdline.
+// If clear_cmdline is FALSE there may be a message there that needs to be
+// cleared only if a mode is shown.
+// Return the length of the message (0 if no message).
int showmode(void)
{
int need_clear;
diff --git a/src/nvim/search.c b/src/nvim/search.c
index 777ea07a21..6e00602e66 100644
--- a/src/nvim/search.c
+++ b/src/nvim/search.c
@@ -310,7 +310,7 @@ void free_search_patterns(void)
/// Save and restore the search pattern for incremental highlight search
/// feature.
///
-/// It's similar but different from save_search_patterns() and
+/// It's similar to but different from save_search_patterns() and
/// restore_search_patterns(), because the search pattern must be restored when
/// cancelling incremental searching even if it's called inside user functions.
void save_last_search_pattern(void)
diff --git a/src/nvim/spell.c b/src/nvim/spell.c
index ec4da88ea1..331d8da55a 100644
--- a/src/nvim/spell.c
+++ b/src/nvim/spell.c
@@ -2294,7 +2294,7 @@ static void use_midword(slang_T *lp, win_T *wp)
}
// Find the region "region[2]" in "rp" (points to "sl_regions").
-// Each region is simply stored as the two characters of it's name.
+// Each region is simply stored as the two characters of its name.
// Returns the index if found (first is 0), REGION_ALL if not found.
static int find_region(char_u *rp, char_u *region)
{
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c
index 7a6f2fce39..ccad893d61 100644
--- a/src/nvim/spellfile.c
+++ b/src/nvim/spellfile.c
@@ -3227,7 +3227,7 @@ static int get_pfxlist(afffile_T *affile, char_u *afflist, char_u *store_afflist
prevp = p;
if (get_affitem(affile->af_flagtype, &p) != 0) {
// A flag is a postponed prefix flag if it appears in "af_pref"
- // and it's ID is not zero.
+ // and its ID is not zero.
STRLCPY(key, prevp, p - prevp + 1);
hi = hash_find(&affile->af_pref, key);
if (!HASHITEM_EMPTY(hi)) {