Search Results

2
votes
2answers
101 views

Can an elisp piece of code “yield” so emacs doesn’t block?

Is there any way to write something like this without taking over emacs? (defun dumb-wait (seconds) (let ((done (+ (second (current-time)) seconds))) (while (< (second (cu …