Ben Wing <ben(a)666.com> writes:
[2] "critical quit" C-Sh-g is supposed to break out of all
loops, even those
where inhibit-quit is set;
It does break out of inhibit-quit. C-g doesn't break this, but C-Sh-g
does:
(let ((inhibit-quit t))
(while t))
However, delays where slow_down_interrupts is involved, such as
`connect', are *not* broken with C-Sh-g, and that's extremely
annoying. Any way to fix that?