1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 20:42:48 -05:00

We now have saner handling of 4-bit modes (disable colour, get the Palette

Manager to give us bg, fg, bold fg and cursor).
I've also removed some traces of the old scroll-optimiser.

[originally from svn r68]
This commit is contained in:
Ben Harris
1999-03-02 23:19:20 +00:00
parent 2145f64798
commit 23634d10df
3 changed files with 62 additions and 60 deletions

View File

@ -59,8 +59,6 @@ static unsigned char *tabs;
#define MAXNL 5
static int nl_count;
static int scroll_heuristic;
static enum {
TOPLEVEL, IGNORE_NEXT,
SEEN_ESC, SEEN_CSI, SET_GL, SET_GR,
@ -147,7 +145,6 @@ void term_update(void) {
do_paint (ctx, TRUE);
free_ctx (ctx);
nl_count = 0;
scroll_heuristic = 0;
}
}