mirror of https://github.com/adamdruppe/arsd.git
just some info
This commit is contained in:
parent
16d05187a3
commit
c1da994df4
2
cgi.d
2
cgi.d
|
@ -4039,6 +4039,8 @@ void handleCgiRequest(alias fun, CustomCgi = Cgi, long maxContentLength = defaul
|
||||||
|
|
||||||
|
|
||||||
// Set stdin to binary mode if necessary to avoid mangled newlines
|
// 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(Windows) {
|
||||||
version(Win64)
|
version(Win64)
|
||||||
_setmode(std.stdio.stdin.fileno(), 0x8000);
|
_setmode(std.stdio.stdin.fileno(), 0x8000);
|
||||||
|
|
|
@ -2627,6 +2627,15 @@ P s = 2 3 ; 2 → Restore xterm window title from stack.
|
||||||
attentionDemanded = true;
|
attentionDemanded = true;
|
||||||
demandAttention();
|
demandAttention();
|
||||||
break;
|
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:
|
default:
|
||||||
unknownEscapeSequence("" ~ cast(char) esc[1]);
|
unknownEscapeSequence("" ~ cast(char) esc[1]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue