From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Wahl Subject: Re: info links broken Date: Wed, 08 May 2019 13:03:05 +0200 Message-ID: <844l652opi.fsf@gmail.com> References: <87o94d6x8w.fsf@triangulum.inesc-id.pt> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:35202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hOKLz-0006Pw-Ar for emacs-orgmode@gnu.org; Wed, 08 May 2019 07:03:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hOKLy-0004cx-A5 for emacs-orgmode@gnu.org; Wed, 08 May 2019 07:03:15 -0400 Received: from [195.159.176.226] (port=34702 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hOKLy-0004aC-2y for emacs-orgmode@gnu.org; Wed, 08 May 2019 07:03:14 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hOKLw-000tT6-Nn for emacs-orgmode@gnu.org; Wed, 08 May 2019 13:03:12 +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" To: emacs-orgmode@gnu.org joaooneillcortes@outlook.pt (João O'Neill Cortes) writes: > Using release 9.2.3(Tag 342) on emacs 26.1, fedora. > > Links of info type, for instance, > [[info:org#The%20clock%20table][info:org#The clock table]] > , seem to be broken. > > The property :path retrieved by org-element-property > in line 10292 is empty, and therefore the link fails to open, > > #+begin_src emacs-lisp > ((eq type 'link) > (let ((type (org-element-property :type context)) > (path (org-element-property :path context))) > #+end_src > There has been a change in the encoding of the links lately. See ORG-NEWS/Version 9.3/Incompatible changes/Change bracket link escaping syntax. There is also function org-update-link-syntax to update old-style links. Concretely your example could be written as [[info:org#The clock table][info:org#The clock table]] or even [[info:org#The clock table]] Ciao -- Marco