From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [PATCH] Bugfix: Functions were renamed so rename the callers too Date: Wed, 14 Jan 2009 00:37:26 +0100 Message-ID: References: <87d4eq3hma.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LMspB-0000xR-2A for emacs-orgmode@gnu.org; Tue, 13 Jan 2009 18:37:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LMsp9-0000s8-2u for emacs-orgmode@gnu.org; Tue, 13 Jan 2009 18:37:32 -0500 Received: from [199.232.76.173] (port=52281 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LMsp8-0000rv-Tr for emacs-orgmode@gnu.org; Tue, 13 Jan 2009 18:37:30 -0500 Received: from mail-bw0-f10.google.com ([209.85.218.10]:55556) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LMsp8-0004HU-Dv for emacs-orgmode@gnu.org; Tue, 13 Jan 2009 18:37:30 -0500 Received: by bwz3 with SMTP id 3so38620bwz.18 for ; Tue, 13 Jan 2009 15:37:28 -0800 (PST) In-Reply-To: <87d4eq3hma.fsf@gollum.intra.norang.ca> 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: Bernt Hansen Cc: "emacs-orgmode@gnu.org list" Thanks! - Carsten On Jan 14, 2009, at 12:34 AM, Bernt Hansen wrote: > Rename functions missed in commit 1371205. > > Changing timestamps for the currently clocked task generated the > following error: > > org-clock-update-time-maybe: Symbol's function definition is void: > org-update-mode-line > --- > I sent this patch to the list a day or two ago but it looks like it > never made it so here's a resend. > > Carsten: This commit is available in my 'for-carsten' branch. > > Regards, > Bernt > > lisp/org.el | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lisp/org.el b/lisp/org.el > index f9db516..125c4f3 100644 > --- a/lisp/org.el > +++ b/lisp/org.el > @@ -2665,7 +2665,7 @@ If TABLE-TYPE is non-nil, also check for > table.el-type tables." > > (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" > (beg end)) > -(declare-function org-update-mode-line "org-clock" ()) > +(declare-function org-clock-update-mode-line "org-clock" ()) > (defvar org-clock-start-time) > (defvar org-clock-marker (make-marker) > "Marker recording the last clock-in.") > @@ -2702,7 +2702,7 @@ Otherwise, return nil." > (setq org-clock-start-time > (apply 'encode-time > (org-parse-time-string (match-string 1)))) > - (org-update-mode-line))) > + (org-clock-update-mode-line))) > (t > (and (match-end 4) (delete-region (match-beginning 4) (match-end > 4))) > (end-of-line 1) > -- > 1.6.1.28.gc32f76 >