hectorhector·hace 4 años·discussHas Aerc added support for email threads yet? I tried it when it first came out and that was my biggest disappointment.
hectorhector·hace 5 años·discussYou can put a signal handler in your program to catch the SIGSTOP and run some code before it gets killed.
hectorhector·hace 7 años·discussWhat's the purpose of this code in the original decompressor? Assuming c is an uchar, aren't EOF and 0xFF equal? if (c == 0xFF) { len = getchar(); c = getchar(); while (len--) emit(c); }