just some info

This commit is contained in:
Adam D. Ruppe 2021-12-10 22:09:23 -05:00
parent 16d05187a3
commit c1da994df4
2 changed files with 11 additions and 0 deletions

2
cgi.d
View File

@ -4039,6 +4039,8 @@ void handleCgiRequest(alias fun, CustomCgi = Cgi, long maxContentLength = defaul
// Set stdin to binary mode if necessary to avoid mangled newlines
// the fact that stdin is global means this could be trouble but standard cgi request
// handling is one per process anyway so it shouldn't actually be threaded here or anything.
version(Windows) {
version(Win64)
_setmode(std.stdio.stdin.fileno(), 0x8000);

View File

@ -2627,6 +2627,15 @@ P s = 2 3 ; 2 → Restore xterm window title from stack.
attentionDemanded = true;
demandAttention();
break;
/+
// this might reduce flickering but would it really? idk.
case "5002":
// disable redraw
break;
case "5003":
// re-enable redraw, force it now.
break;
+/
default:
unknownEscapeSequence("" ~ cast(char) esc[1]);
}