From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: [PATH] Speedups to org-table-recalculate Date: Sun, 17 Aug 2014 07:39:54 -0600 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58928) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XJ0gd-0002b8-SK for emacs-orgmode@gnu.org; Sun, 17 Aug 2014 09:39:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XJ0gd-000729-0F for emacs-orgmode@gnu.org; Sun, 17 Aug 2014 09:39:55 -0400 Received: from mail-qc0-x22c.google.com ([2607:f8b0:400d:c01::22c]:34379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XJ0gc-000725-SZ for emacs-orgmode@gnu.org; Sun, 17 Aug 2014 09:39:54 -0400 Received: by mail-qc0-f172.google.com with SMTP id i8so3924125qcq.31 for ; Sun, 17 Aug 2014 06:39:54 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nathaniel Flath Cc: org-mode List Hi Nathaniel On Thu, Aug 7, 2014 at 4:57 PM, Nathaniel Flath 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