emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] [PATCH] Revert "Fix :VISIBILITY: handling of nested "folded" p


From: Matt Lundin
Subject: [Orgmode] [PATCH] Revert "Fix :VISIBILITY: handling of nested "folded" properties"
Date: Sun, 05 Dec 2010 23:45:07 -0500
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux)

This reverts commit 383802d063a9f2dd959d5574b226fa8ec7f8be41.

The commit had org-mode process the headlines from bottom to top, which
meant that any changes to the visibility of lower headlines were
overridden/modified by changes higher up the tree. Reverting the commit
causes VISIBILITY to work correctly.
---
 lisp/org.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index 66514a2..4b39c9c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -6073,8 +6073,8 @@ With a numeric prefix, show all headlines up to that 
level."
   (interactive)
   (let (org-show-entry-below state)
     (save-excursion
-      (goto-char (point-max))
-      (while (re-search-backward
+      (goto-char (point-min))
+      (while (re-search-forward
              "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
              nil t)
        (setq state (match-string 1))
-- 
1.7.3.2




reply via email to

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