emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Bug in org-find-entry-with-id


From: Michael Hohmuth
Subject: [Orgmode] Bug in org-find-entry-with-id
Date: Fri, 19 Jun 2009 12:08:21 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux)

Hi there,

I've attached a critical bug fix for org-find-entry-with-id (relative
to org.el in org-6.27a).

Without this fix, following ID links to hidden headlines is impossible
because org-back-to-heading always jumps back to the last visible
headline.  This breaks many things, including org-depend.el.

Kind regards,
Michael
-- 
Michael Hohmuth, AMD Operating System Research Center, Dresden, Germany
address@hidden, www.amd64.org

--- org.el      2009/06/19 10:04:48     1.1
+++ org.el      2009/06/19 10:05:13
@@ -12027,7 +12027,7 @@
        (when (re-search-forward
               (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
               nil t)
-         (org-back-to-heading)
+         (org-back-to-heading t)
          (point))))))
 
 ;;;; Timestamps

reply via email to

[Prev in Thread] Current Thread [Next in Thread]