From mboxrd@z Thu Jan 1 00:00:00 1970 From: Unknown Subject: Bug: org-open-at-point bug for radio targets [8.2 (8.2-6-gd745cd-elpa @ /home/ben/.emacs.d/elpa/org-20130930/)] Date: Mon, 30 Sep 2013 23:23:43 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQn7c-000332-KN for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 19:43:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VQn7T-0007lU-A0 for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 19:43:24 -0400 Received: from out.packetderm.com ([66.203.85.62]:55044) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQn7T-0007lG-3J for emacs-orgmode@gnu.org; Mon, 30 Sep 2013 19:43:15 -0400 Received: from localhost (localhost[127.0.0.1]) (authenticated bits=0) by smtp (5.7.4/5.7.4) with ESMTP id r8UMOxen000389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Mon, 30 Sep 2013 18:25:01 -0400 (EDT) (envelope-from ben@desktop) From: ben@desktop 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 Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ When I click on a radio target link I get the following error: and: Wrong type argument: stringp, nil I managed to fix the problem by changing this: (and (string-match "^id:" link) (or (featurep 'org-id) (require 'org-id)) (progn (funcall (nth 1 (assoc "id" org-link-protocols)) (substring path 3)) t)) to this: (and link (string-match "^id:" link) (or (featurep 'org-id) (require 'org-id)) (progn (funcall (nth 1 (assoc "id" org-link-protocols)) (substring path 3)) t)) towards the end of the org-open-at-point function. Emacs : GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.4.2) of 2013-08-22 on louvi, modified by Debian Package: Org-mode version 8.2 (8.2-6-gd745cd-elpa @ /home/ben/.emacs.d/elpa/org-20130930/)