[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [PATH] Speedups to org-table-recalculate
From: |
Michael Brand |
Subject: |
Re: [O] [PATH] Speedups to org-table-recalculate |
Date: |
Sun, 17 Aug 2014 07:39:54 -0600 |
Hi Nathaniel
On Thu, Aug 7, 2014 at 4:57 PM, Nathaniel Flath <address@hidden> wrote:
> I'd be fine with displaying every
> second, but I don't see a good way of doing this - do you have any
> suggestions?
I thought of something like in this example:
(let ((row 0) (log (time-add (current-time) '(0 1 0 0))))
(while (< row 6543210)
(setq row (1+ row))
(when (time-less-p log (current-time))
(setq log (time-add (current-time) '(0 1 0 0)))
(message "row %d" row))))
Michael