TUI: Do not disable BCE for builtin terminfos (#9443)

Remove this vestigial hack from #7624.

Since 5a0d0286ff we blacklist BCE more surgically. And
patch_terminfo_bugs() is the more appropriate place for that.

ref 5749ecaf22
ref #4210 #4421 #7035 #7337 #7381 #7425 #7618
This commit is contained in:
Justin M. Keyes 2019-01-02 22:31:03 +01:00 committed by GitHub
parent 5fba815921
commit 9f19e8d29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,9 +137,6 @@ unibi_term *terminfo_from_builtin(const char *term, char **termname)
if (*termname == NULL) {
*termname = xstrdup("builtin_?");
}
// Disable BCE by default (for built-in terminfos). #7624
// https://github.com/kovidgoyal/kitty/issues/160#issuecomment-346470545
unibi_set_bool(ut, unibi_back_color_erase, false);
return ut;
}