From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Elliott Subject: Re: Bug: Invalid function: ignore-errors [6.36] Date: Tue, 11 May 2010 16:09:05 +0000 (UTC) Message-ID: References: <19433.25860.502957.794540@morrison.gslt.hum.gu.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=47828 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OBsVD-0004vt-Fs for emacs-orgmode@gnu.org; Tue, 11 May 2010 12:40:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OBsV7-0002Ee-TC for emacs-orgmode@gnu.org; Tue, 11 May 2010 12:40:15 -0400 Received: from lo.gmane.org ([80.91.229.12]:41218) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBsV7-0002ES-NL for emacs-orgmode@gnu.org; Tue, 11 May 2010 12:40:09 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OBsV1-0006oM-E7 for emacs-orgmode@gnu.org; Tue, 11 May 2010 18:40:03 +0200 Received: from CPE001e2a013991-CM0012257049ec.cpe.net.cable.rogers.com ([99.246.139.219]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 May 2010 18:40:03 +0200 Received: from ae by CPE001e2a013991-CM0012257049ec.cpe.net.cable.rogers.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 May 2010 18:40:03 +0200 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 Robert Andersson gu.se> writes: > RA> After upgrading from orgmode 6.34c to 6.36 I get an error "Invalid > RA> function: ignore-errors" when toggling checkboxes, and also running > > RA> (org-update-statistics-cookies all) > > RA> will not work at all. Downgrading back to 6.34c helps. > > I also just now installed version 6.35, which also gave me the same > errors stated above when working with checkboxes. A clean build of > 6.34c does not produce these errors... Hope this helps. Problem exists in some 6.35 versions as well. Looks like org-list.el uses `ignore-errors' macro defined in cl-macs.el. Adding following line near top of org-list.el file fixes problem for me: (require 'cl) Does not appear that cl-macs can be required separately. Adam