mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 19:48:32 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user