From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Berry Subject: Re: navigation broken in recent maint Date: Wed, 18 Jun 2014 19:31:00 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxLZr-0006Qe-V1 for emacs-orgmode@gnu.org; Wed, 18 Jun 2014 15:31:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxLZj-0001q4-92 for emacs-orgmode@gnu.org; Wed, 18 Jun 2014 15:31:23 -0400 Received: from plane.gmane.org ([80.91.229.3]:49083) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxLZj-0001pl-2S for emacs-orgmode@gnu.org; Wed, 18 Jun 2014 15:31:15 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WxLZf-00013o-GU for emacs-orgmode@gnu.org; Wed, 18 Jun 2014 21:31:11 +0200 Received: from 128.54.46.23 ([128.54.46.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jun 2014 21:31:11 +0200 Received: from ccberry by 128.54.46.23 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jun 2014 21:31:11 +0200 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 Samuel Wales gmail.com> writes: > > quick and dirty bug report. recent org maint. > > 1: > > jumping from magit (maint) to org using RET always goes > to the wrong location now. > > i don't know that this is org's fault. i have seen it > happen once before, which is when i tried > longlines-mode and similar modes. i think it was only in org, but i > am not sure. > > was there a change in org visibility? > > 2: > > id links always go to the wrong location now. they jump someplace > near the link. > > dunno if 1 and 2 are related. i'd guess not but they > started in the same snapshot. > > can't do ecm at this time. > Here is one I've adapted from the "navigation broken - occur, org-babel-goto-named-src-block, etc fail" thread: http://article.gmane.org/gmane.emacs.orgmode/87575 Before executing the src block in what follows the custom_id links work. After executing the src block the links that are far from their target fail. Anyone who wants to dig into this should see Nicolas Richard's reply at the end of that thread: http://article.gmane.org/gmane.emacs.orgmode/87598 HTH, Chuck ============== * headline A :PROPERTIES: :CUSTOM_ID: idA :END: [[#idB]] #+NAME: AAA #+BEGIN_SRC x #+END_SRC #+NAME: filler #+BEGIN_SRC emacs-lisp :results output (let ((i ?a)) (while (< i ?z) (princ (format "* %s\n\n\n#+NAME: %s\n\n" (char-to-string i) (char-to-string i))) (setq i (1+ i)))) #+END_SRC [[#idA]] [[#idB]] #+RESULTS: filler [[#idA]] [[#idB]] * headline B :PROPERTIES: :CUSTOM_ID: idB :END: [[#idA]] [[#idB]] #+NAME: BBB #+BEGIN_SRC x #+END_SRC