0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.3.925

Problem:    Typos in source files.
Solution:   Fix the typos. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-05-06 04:24:17 +02:00
parent 84e0f6ca9a
commit 84a05acc8c
72 changed files with 167 additions and 166 deletions

View File

@@ -1418,7 +1418,7 @@ docomplete:
normalchar:
/*
* Insert a nomal character.
* Insert a normal character.
*/
#ifdef FEAT_AUTOCMD
if (!p_paste)
@@ -7162,7 +7162,7 @@ cursor_up(n, upd_topline)
/*
* Count each sequence of folded lines as one logical line.
*/
/* go to the the start of the current fold */
/* go to the start of the current fold */
(void)hasFolding(lnum, &lnum, NULL);
while (n--)
@@ -7213,7 +7213,7 @@ cursor_down(n, upd_topline)
(void)hasFolding(lnum, NULL, &lnum);
#endif
/* This fails if the cursor is already in the last line or would move
* beyound the last line and '-' is in 'cpoptions' */
* beyond the last line and '-' is in 'cpoptions' */
if (lnum >= curbuf->b_ml.ml_line_count
|| (lnum + n > curbuf->b_ml.ml_line_count
&& vim_strchr(p_cpo, CPO_MINUS) != NULL))
@@ -7715,7 +7715,7 @@ fix_indent()
/*
* return TRUE if 'cinkeys' contains the key "keytyped",
* when == '*': Only if key is preceded with '*' (indent before insert)
* when == '!': Only if key is prededed with '!' (don't insert)
* when == '!': Only if key is preceded with '!' (don't insert)
* when == ' ': Only if key is not preceded with '*'(indent afterwards)
*
* "keytyped" can have a few special values:
@@ -8541,7 +8541,7 @@ ins_start_select(c)
#endif
/*
* <Insert> key in Insert mode: toggle insert/remplace mode.
* <Insert> key in Insert mode: toggle insert/replace mode.
*/
static void
ins_insert(replaceState)