From fc6142dfd35359f49ff2299fc29ca0f8ca93d86c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Pereira?= Date: Tue, 24 Oct 2023 21:42:34 +0100 Subject: [PATCH] Remove not used Screen artifacts --- lib/Screen.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/Screen.cpp b/lib/Screen.cpp index 4424f236..41587359 100644 --- a/lib/Screen.cpp +++ b/lib/Screen.cpp @@ -43,10 +43,6 @@ using namespace Konsole; -//FIXME: this is emulation specific. Use false for xterm, true for ANSI. -//FIXME: see if we can get this from terminfo. -#define BS_CLEARS false - //Macro to convert x,y position on screen to position within an image. // //Originally the image was stored as one large contiguous block of @@ -607,9 +603,6 @@ void Screen::backspace() if (screenLines[cuY].size() < cuX+1) screenLines[cuY].resize(cuX+1); - - if (BS_CLEARS) - screenLines[cuY][cuX].character = ' '; } void Screen::tab(int n)