From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: bug in org-element-footnote-definition-parser? Date: Wed, 08 Jan 2014 13:21:44 -0500 Message-ID: <87ppo2fi6f.fsf@alphaville.bos.redhat.com> References: <8761pubci4.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55416) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0xlY-0003s8-UT for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 13:22:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W0xlT-00081o-4G for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 13:22:08 -0500 Received: from plane.gmane.org ([80.91.229.3]:52881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0xlS-00081i-Ty for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 13:22:03 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W0xlQ-0001EW-Fb for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 19:22:00 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Jan 2014 19:22:00 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Jan 2014 19:22:00 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Goaziou writes: > Hello, > > Mark Edgington writes: > >> I have encountered the following error message when trying to export >> to latex the attached example org file: >> >> org-element-footnote-definition-parser: Invalid search bound (wrong >> side of point) >> I 'm not sure but I believe this was a bug in emacs that Eli Zaretskii fixed recently. You will need to update your emacs. In the git mirror I use, the commit appears like this: commit b2b5f414358a7835b56613f67d2b0278ee804290 Author: Eli Zaretskii Date: Wed Jan 1 19:44:48 2014 +0200 Fix bug #16265 with buffer caches when modifying text in indirect buffers. src/search.c (newline_cache_on_off, find_newline): In indirect buffers, use the newline cache of the base buffer. src/insdel.c (invalidate_buffer_caches): If BUF is an indirect buffer, invalidate the caches of its base buffer. src/indent.c (width_run_cache_on_off, compute_motion): In indirect buffers, use the width-run cache of the base buffer. src/xdisp.c (redisplay_window): When the window displays an indirect buffer, and the character widths in the display table have changed, invalidate the width-run cache of the corresponding base buffer. src/fileio.c (Finsert_file_contents): When invalidating the newline cache, consider the case of inserting into indirect buffer. src/bidi.c (bidi_paragraph_cache_on_off, bidi_find_paragraph_start): In indirect buffers, use the paragraph cache of the base buffer. Nick