From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Sebold Subject: Re: Re: Relative clocking [Further discussion and ideas by OP] Date: Tue, 25 Nov 2008 05:48:55 -0600 Message-ID: References: <7bef1f890811232347s2b91a19ey985e967d501d7270@mail.gmail.com> <9EF47D2B-F1FF-4125-BA26-5C7F7FC42F1D@uva.nl> <7bef1f890811241231m52f9a2e1o8c320272d3a6e291@mail.gmail.com> <7bef1f890811250008l2c345ae6y3069fda96fe2cf20@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L4wPb-0004Db-F4 for emacs-orgmode@gnu.org; Tue, 25 Nov 2008 06:48:59 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L4wPa-0004DA-KV for emacs-orgmode@gnu.org; Tue, 25 Nov 2008 06:48:58 -0500 Received: from [199.232.76.173] (port=35008 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L4wPa-0004D4-Gj for emacs-orgmode@gnu.org; Tue, 25 Nov 2008 06:48:58 -0500 Received: from yx-out-1718.google.com ([74.125.44.153]:29875) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L4wPa-0003e3-A7 for emacs-orgmode@gnu.org; Tue, 25 Nov 2008 06:48:58 -0500 Received: by yx-out-1718.google.com with SMTP id 34so1108814yxf.66 for ; Tue, 25 Nov 2008 03:48:56 -0800 (PST) In-Reply-To: (Carsten Dominik's message of "Tue\, 25 Nov 2008 12\:29\:15 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= On 25 Nov 2008, Carsten Dominik wrote: > I have added such a timer to Org-mode, if you get the latest git > release, you can use it. I include a quick patch to what I just checked out, to fix an extra parenthesis: -- Charles Sebold 25th of November, 2008 GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600) | Gnus v5.11 | org-mode 6.13a --=-=-= Content-Disposition: attachment Content-Description: Diff to fix extra parenthesis in org-timer Changes in master Modified lisp/org-timer.el diff --git a/lisp/org-timer.el b/lisp/org-timer.el index 8ecfebd..34fab12 100644 --- a/lisp/org-timer.el +++ b/lisp/org-timer.el @@ -90,7 +90,7 @@ that was not started at the correct moment." (org-timer-secs-to-hms (floor (- (time-to-seconds (current-time)) - (time-to-seconds org-timer-start-time)))))))) + (time-to-seconds org-timer-start-time))))))) ;;;###autoload (defun org-timer-change-times-in-region (beg end delta) --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--