From mboxrd@z Thu Jan 1 00:00:00 1970 From: Magnus Henoch Subject: Re: org-feed broken? Date: Wed, 13 May 2009 16:51:55 +0100 Message-ID: <84hbzp9f1g.fsf@linux-b2a3.site> References: <20090513111722.4f7b4f24@johnrakestraw.com> 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 1M4Gkl-0003kB-Dp for emacs-orgmode@gnu.org; Wed, 13 May 2009 11:52:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M4Gkf-0003hh-MN for emacs-orgmode@gnu.org; Wed, 13 May 2009 11:52:17 -0400 Received: from [199.232.76.173] (port=32946 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M4Gke-0003hZ-W2 for emacs-orgmode@gnu.org; Wed, 13 May 2009 11:52:13 -0400 Received: from main.gmane.org ([80.91.229.2]:59026 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M4Gke-0004OK-Bg for emacs-orgmode@gnu.org; Wed, 13 May 2009 11:52:12 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1M4Gkb-0006sT-U3 for emacs-orgmode@gnu.org; Wed, 13 May 2009 15:52:09 +0000 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 ; Wed, 13 May 2009 15:52:09 +0000 Received: from magnus.henoch by host213-123-170-251.in-addr.btopenworld.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 13 May 2009 15:52:09 +0000 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 John Rakestraw writes: [...] > I don't know lisp (or any programming language). Can someone give me an > idea whether I'm running any risk of data loss by running org-feed.el > without these calls? Not really. org-feed will 'leak' memory each time you run org-feed-update (the buffers with feed data will never be removed), but that shouldn't add up to great amounts. (Especially if you regularly restart Emacs.) > And am I correct in assuming that ignore-errors is a function > introduced in emacs 23? If so, can I get the definition and install it > in my .emacs configuration as a holdover until I upgrade to emacs 23? Half correct. Prior to Emacs 23, ignore-errors was defined in the cl package, which isn't loaded by default; in Emacs 23, it is in subr.el, which _is_ loaded by default. Adding: (eval-when-compile (require 'cl)) at the top of org-feed.el is the traditional way of loading it. Magnus