Cleanup misc.

Regarding debugger.txt (which was Spotted by @Hettomei):
The third section was empty, and the second section is very outdated.
Nvim doesn't have things like Balloon Evalutation and Sun Visual
workshop integration, so just remove the section.

Regarding everything else:
- term.[ch] and term_defs.h don't exist anymore, so remove refs to them
- Add ttybuiltin to vim_diff.txt. It should have been done before, but
  vim_diff.txt didn't exist when ttybuiltin was removed (done in
  3baba1e7bc6698e6bc9f1d37fce88b30d6274bc9,)

Helped-by: Justin M. Keyes <justinkz@gmail.com>
This commit is contained in:
Michael Reed
2015-05-05 22:00:43 -04:00
parent f415932b2d
commit 00cf632b2b
8 changed files with 12 additions and 51 deletions

View File

@@ -6448,11 +6448,6 @@ int screen_ins_lines (
int j;
unsigned temp;
// FAIL if
// - there is no valid screen
// - the screen has to be redrawn completely
// - the line count is less than one
// - the line count is more than 'ttyscroll'
if (!screen_valid(TRUE) || line_count <= 0) {
return FAIL;
}
@@ -6507,11 +6502,6 @@ int screen_del_lines (
int i;
unsigned temp;
// FAIL if
// - there is no valid screen
// - the screen has to be redrawn completely
// - the line count is less than one
// - the line count is more than 'ttyscroll'
if (!screen_valid(TRUE) || line_count <= 0) {
return FAIL;
}