Matthieu Moy <[EMAIL PROTECTED]> writes: > One point : I've seen you've added a "backward compatibility" piece of > code in tla--run-tla-... functions. It's not necessary with the > tla--kill-process-buffer feature. The process buffers are pushed in a > queue, and will be deleted when the queue will be full.
Ah! I'd missed that--that's really neat. So the correct solution would be to replace: (unless ,output-buffer (kill-buffer ,output-buf)) (unless ,error-buffer (kill-buffer ,error-buf))))) with (unless ,output-buffer (tla--kill-process-buffer ,output-buf)) (unless ,error-buffer (tla--kill-process-buffer ,error-buf))))) ? Mark -- Mark Triggs <[EMAIL PROTECTED]>
