From mboxrd@z Thu Jan 1 00:00:00 1970 From: Memnon Anon Subject: [Bug] Inline Links from Agenda Date: Thu, 8 Nov 2012 15:40:43 +0000 (UTC) Message-ID: <87sj8k15s0.fsf@mean.albasani.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35451) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWUE4-0004T5-Ie for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 10:41:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWUDw-0000zm-Ny for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 10:41:04 -0500 Received: from plane.gmane.org ([80.91.229.3]:60555) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWUDw-0000zg-HE for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 10:40:56 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TWUE2-0005Em-QM for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 16:41:02 +0100 Received: from e178227209.adsl.alicedsl.de ([85.178.227.209]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 08 Nov 2012 16:41:02 +0100 Received: from gegendosenfleisch by e178227209.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 08 Nov 2012 16:41:02 +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 Hi, it seems to me that `C-c C-o' (org-agenda-open-link) does not work correctly for internal links with: ELISP> (emacs-version) "GNU Emacs 24.2.50.1 (i486-pc-linux-gnu, GTK+ Version 3.4.2)\n of 2012-11-01 on dex, modified by Debian" ELISP> (org-version t t) "Org-mode version 7.9.2 (release_7.9.2-571-g359891 @/home/memnon/tmp/bin/org-mode/lisp/)" Steps to reproduce: * minimal agenda file in ~/agenda.org : --8<---------------cut here---------------start------------->8--- * TODO This is my heading * [[This is my heading]] SCHEDULED: <2012-11-08 Do> --8<---------------cut here---------------end--------------->8--- * $ emacs-snapshot -nw -Q * load minimal .emacs: --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "/path/to/org-mode/lisp") (add-to-list 'load-path "/path/to/org-mode/contrib/lisp") (add-to-list 'load-path "/path/to/org-mode/contrib/babel/lisp") (setq org-agenda-files '("~/agenda.org")) (require 'org) --8<---------------cut here---------------end--------------->8--- * M-x org-agenda * `a' * `C-c C-o' (org-agenda-open-link) on the line with the link This should take me to the the linked headline IIUC, but it doesn't. All I get is a "Position saved to mark ring, go back with C-c &." Memnon