From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: [PATCH] Bugfix: Functions were renamed so rename the callers too Date: Sun, 18 Jan 2009 11:00:07 -0500 Message-ID: <87eiz0a9ko.fsf@gollum.intra.norang.ca> References: <1231790453-24585-1-git-send-email-bernt@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LOa4K-00009I-6u for emacs-orgmode@gnu.org; Sun, 18 Jan 2009 11:00:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LOa4J-00008R-Aq for emacs-orgmode@gnu.org; Sun, 18 Jan 2009 11:00:11 -0500 Received: from [199.232.76.173] (port=47851 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LOa4J-00008J-2F for emacs-orgmode@gnu.org; Sun, 18 Jan 2009 11:00:11 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:50105) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LOa4I-0006cL-I8 for emacs-orgmode@gnu.org; Sun, 18 Jan 2009 11:00:10 -0500 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([99.239.148.180] helo=mail.norang.ca) by mho-02-bos.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LOa4H-000PR6-J0 for emacs-orgmode@gnu.org; Sun, 18 Jan 2009 16:00:09 +0000 Received: from gollum.intra.norang.ca (gollum.intra.norang.ca [192.168.1.5]) by mail.norang.ca (8.13.8/8.13.8/Debian-3) with ESMTP id n0IG07X3021508 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sun, 18 Jan 2009 11:00:08 -0500 Received: from gollum.intra.norang.ca (localhost [127.0.0.1]) by gollum.intra.norang.ca (8.14.3/8.14.3/Debian-5) with ESMTP id n0IG074D005780 for ; Sun, 18 Jan 2009 11:00:07 -0500 In-Reply-To: <1231790453-24585-1-git-send-email-bernt@norang.ca> (Bernt Hansen's message of "Mon\, 12 Jan 2009 15\:00\:53 -0500") 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 This is old and already applied. Thanks. This was my original submission sent by git send-email. I assume it got stuck waiting for moderation before it hit the list. -Bernt Bernt Hansen writes: > 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 > --- > Carsten: This patch is available on my 'for-carsten' branch. > > lisp/org.el | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lisp/org.el b/lisp/org.el > index c33560e..8539f94 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 > > > > _______________________________________________ > 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