From mboxrd@z Thu Jan 1 00:00:00 1970 From: Magnus Henoch Subject: Re: Bug: Invalid function: ignore-errors [6.36] Date: Tue, 11 May 2010 18:09:53 +0100 Message-ID: <847hna4b6m.fsf@linux-b2a3.site> References: <19433.25860.502957.794540@morrison.gslt.hum.gu.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=39609 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OBtCt-0005zV-L5 for emacs-orgmode@gnu.org; Tue, 11 May 2010 13:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OBtCf-0002mZ-Qe for emacs-orgmode@gnu.org; Tue, 11 May 2010 13:25:11 -0400 Received: from lo.gmane.org ([80.91.229.12]:41750) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBtCb-0002le-DL for emacs-orgmode@gnu.org; Tue, 11 May 2010 13:25:07 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OBsy3-0000Gy-Du for emacs-orgmode@gnu.org; Tue, 11 May 2010 19:10:03 +0200 Received: from host213-123-170-251.in-addr.btopenworld.com ([213.123.170.251]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 May 2010 19:10:03 +0200 Received: from magnus.henoch by host213-123-170-251.in-addr.btopenworld.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 May 2010 19:10: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 Adam Elliott writes: > 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. The canonical way to require cl only for macros is: (eval-when-compile (require 'cl)) See (info "(elisp)Coding Conventions"). -- Magnus Henoch