From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Issue with internal links Date: Thu, 08 Aug 2019 16:54:31 -0400 Message-ID: <87imr7v0mw.fsf@alphaville.usersys.redhat.com> References: <4D3A34C7-9A8C-421A-AE42-2590B33C6BE6@ur.rochester.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:35597) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hvpQn-0006Jn-GI for emacs-orgmode@gnu.org; Thu, 08 Aug 2019 16:54:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hvpQm-0001Ko-F4 for emacs-orgmode@gnu.org; Thu, 08 Aug 2019 16:54:41 -0400 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:44948 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hvpQm-0001Ii-8Q for emacs-orgmode@gnu.org; Thu, 08 Aug 2019 16:54:40 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hvpQj-000uuk-1d for emacs-orgmode@gnu.org; Thu, 08 Aug 2019 22:54:37 +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 "Doyley, Marvin M." writes: > > * Testing > * One > * Two > [[*Testing]]. (I also tried [[Testing]] and I got the same error) > > Debugger entered--Lisp error: (void-function org-pass-link-to-system) > org-pass-link-to-system("*Testing") > run-hook-with-args-until-success(org-pass-link-to-system "*Testing") > (if (run-hook-with-args-until-success 'org-open-link-functions path) .... org-pass-link-to-system is not a function defined by org mode, AFAICT. The fact that it's the value of the org-open-link-functions hook reinforces my belief that at some point in the past, you had defined this function somewhere and you had included it in the hook; perhaps you lost the function after an upgrade or a disk failure or ... who knows? The value of org-open-link-functions is nil in my case, so I'd recommend you try setting it to that: (setq org-open-link-functions nil) and try following the link. If that works to your satisfaction, then find the place in your init file or customizations file where org-pass-link-to-system is added to org-open-link-functions and get rid of it. Then restart emacs. HTH. -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler