From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: apparently too stupid to use checkboxes Date: Tue, 23 Mar 2010 14:01:21 +0100 Message-ID: <51F1BFF1-93D8-4AFD-99CA-414A8C857A5C@gmail.com> References: <20100323103714.5336e323@gaia> Mime-Version: 1.0 (Apple Message framework v936) 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 1Nu3mC-0001T7-0M for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 09:04:08 -0400 Received: from [140.186.70.92] (port=33976 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nu3mA-0001SU-IA for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 09:04:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nu3m4-0000GA-3u for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 09:04:06 -0400 Received: from fg-out-1718.google.com ([72.14.220.157]:35249) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nu3m3-0000Fy-Vf for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 09:04:00 -0400 Received: by fg-out-1718.google.com with SMTP id d23so1236126fga.12 for ; Tue, 23 Mar 2010 06:03:59 -0700 (PDT) In-Reply-To: <20100323103714.5336e323@gaia> 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: Detlef Steuer Cc: emacs-orgmode@gnu.org Hi Detlef, `ignore-errors' is defined in cl-macs in Emacs 22. You need to compile the .el file to get this macro. Alternatively, define it in your .emacs file before loading org-mode stuff: (defmacro ignore-errors (&rest body) "Execute BODY; if an error occurs, return nil. Otherwise, return result of last form in BODY." `(condition-case nil (progn ,@body) (error nil))) HTH - Carsten On Mar 23, 2010, at 10:37 AM, Detlef Steuer wrote: > Hi! > > I try to use checkboxes (never used before): > > * TODO Test [/] > - [ ] first > - [ ] second > > Now I can C-c C-c to state-change a single box, but the summary box > in the > headline never gets updated. > > If I try C-c # I get an error messge > Invalid function: ignore errors > > Even if I cut'n'paste the checkbox example out of the manual it > doesn't > work here. > > > My org-version is > release_6.34c-232-g727a > Org-mode version 6.34trans (release_6.34c.232.g727a) > > My emacs > GNU Emacs 22.3.1 (i586-suse-linux-gnu, GTK+ Version 2.14.4) of > 2008-12-03 on build19 > > > I know, the mistake must happen between my ears .... > Any help appreciated. > > Detlef > > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten