1
0
forked from aniani/vim

updated for version 7.1b

This commit is contained in:
Bram Moolenaar
2007-05-10 19:06:20 +00:00
parent 3ad16f3fe6
commit 25394022f2
13 changed files with 69 additions and 53 deletions

View File

@@ -655,7 +655,7 @@ chg_l_to_X_orX_ ()
}
/*
** Change the charcter left to the cursor to a X or _X type
** Change the character left to the cursor to a X or _X type
*/
static void
@@ -724,7 +724,7 @@ chg_l_toXor_X ()
}
/*
** Change the charcter right to the cursor to a _X or _X_ type
** Change the character right to the cursor to a _X or _X_ type
*/
static void

View File

@@ -7,7 +7,7 @@
*/
/*
* Farsi characters are catagorized into following types:
* Farsi characters are categorized into following types:
*
* TyA (for capital letter representation)
* TyB (for types that look like _X e.g. AYN)

View File

@@ -2684,7 +2684,7 @@ foldUpdateIEMSRecurse(gap, level, startlnum, flp, getlevel, bot, topflags)
{
if (fp->fd_top + fp->fd_len > bot + 1)
{
/* fold coninued below bot */
/* fold continued below bot */
if (getlevel == foldlevelMarker
|| getlevel == foldlevelExpr
|| getlevel == foldlevelSyntax)
@@ -2834,7 +2834,7 @@ foldSplit(gap, i, top, bot)
* 3 5 6
*
* 1: not changed
* 2: trunate to stop above "top"
* 2: truncate to stop above "top"
* 3: split in two parts, one stops above "top", other starts below "bot".
* 4: deleted
* 5: made to start below "bot".
@@ -2900,8 +2900,8 @@ foldRemove(gap, top, bot)
/* foldMerge() {{{2 */
/*
* Merge two adjecent folds (and the nested ones in them).
* This only works correctly when the folds are really adjecent! Thus "fp1"
* Merge two adjacent folds (and the nested ones in them).
* This only works correctly when the folds are really adjacent! Thus "fp1"
* must end just above "fp2".
* The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
* Fold entry "fp2" in "gap" is deleted.

View File

@@ -3727,7 +3727,7 @@ expand_env_esc(srcp, dst, dstlen, esc, startstr)
if (copy_char) /* copy at least one char */
{
/*
* Recogize the start of a new name, for '~'.
* Recognize the start of a new name, for '~'.
*/
at_start = FALSE;
if (src[0] == '\\' && src[1] != NUL)
@@ -4451,7 +4451,7 @@ vim_ispathlistsep(c)
#ifdef UNIX
return (c == ':');
#else
return (c == ';'); /* might not be rigth for every system... */
return (c == ';'); /* might not be right for every system... */
#endif
}
#endif
@@ -4561,7 +4561,7 @@ vim_fnamencmp(x, y, len)
/*
* Concatenate file names fname1 and fname2 into allocated memory.
* Only add a '/' or '\\' when 'sep' is TRUE and it is neccesary.
* Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
*/
char_u *
concat_fnames(fname1, fname2, sep)
@@ -7118,7 +7118,7 @@ get_c_indent()
/*
* What happens next depends on the line being terminated.
* If terminated with a ',' only consider it terminating if
* there is anoter unterminated statement behind, eg:
* there is another unterminated statement behind, eg:
* 123,
* sizeof
* here
@@ -7306,7 +7306,7 @@ get_c_indent()
/*
* If we're below an unterminated line that is not an
* "if" or something, we may line up with this line or
* add someting for a continuation line, depending on
* add something for a continuation line, depending on
* the line before this one.
*/
else
@@ -8513,7 +8513,7 @@ dos_expandpath(
char_u *path,
int wildoff,
int flags, /* EW_* flags */
int didstar) /* expaneded "**" once already */
int didstar) /* expanded "**" once already */
{
char_u *buf;
char_u *path_end;
@@ -9340,7 +9340,7 @@ get_cmd_output(cmd, infile, flags)
* read the names from the file into memory
*/
# ifdef VMS
/* created temporary file is not allways readable as binary */
/* created temporary file is not always readable as binary */
fd = mch_fopen((char *)tempname, "r");
# else
fd = mch_fopen((char *)tempname, READBIN);