1
0
forked from aniani/vim

updated for version 7.0048

This commit is contained in:
Bram Moolenaar
2005-02-05 21:43:56 +00:00
parent 3a7c85bc13
commit 2a8d1f877c
6 changed files with 592 additions and 300 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -3383,8 +3383,8 @@ ex_z(eap)
break;
case '=':
start = lnum - bigness / 2 + 1;
end = lnum + bigness / 2 - 1;
start = lnum - (bigness + 1) / 2 + 1;
end = lnum + (bigness + 1) / 2 - 1;
curs = lnum;
minus = 1;
break;
@@ -3396,8 +3396,8 @@ ex_z(eap)
break;
case '.':
start = lnum - bigness / 2;
end = lnum + bigness / 2;
start = lnum - (bigness + 1) / 2 + 1;
end = lnum + (bigness + 1) / 2 - 1;
curs = end;
break;

View File

@@ -2469,7 +2469,7 @@ mainerr(n, str)
#endif
mch_errmsg(longVersion);
mch_errmsg("\r\n");
mch_errmsg("\n");
mch_errmsg(_(main_errors[n]));
if (str != NULL)
{
@@ -2477,7 +2477,7 @@ mainerr(n, str)
mch_errmsg((char *)str);
mch_errmsg("\"");
}
mch_errmsg(_("\nMore info with: \"vim -h\"\r\n"));
mch_errmsg(_("\nMore info with: \"vim -h\"\n"));
mch_exit(1);
}