From 9f056593a5031c1ccf0a591aceedf7558a9847fa Mon Sep 17 00:00:00 2001 From: Eric S Fraga Date: Mon, 4 Jul 2011 12:23:25 +0200 Subject: [PATCH] org-table.el: Er... fix the previous fix about time formulas computation. The error was introduced by Bastien, not Maciek Starzyk. Bzg was trying to fix things manually too hastily :) --- lisp/org-table.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 7f0f9bbca..9724dc2b6 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -2513,13 +2513,13 @@ not overwrite the stored one." (error "#ERROR")) ev (if (numberp ev) (number-to-string ev) ev) ev (if duration (org-table-time-seconds-to-string - (string-to-number ev) ev))) + (string-to-number ev)) ev)) (or (fboundp 'calc-eval) (error "Calc does not seem to be installed, and is needed to evaluate the formula")) (setq ev (calc-eval (cons form modes) (if numbers 'num)) ev (if duration (org-table-time-seconds-to-string - (string-to-number ev) ev)))) + (string-to-number ev)) ev))) (when org-table-formula-debug (with-output-to-temp-buffer "*Substitution History*"