emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Bugs in org-cycle-internal-local?


From: Rémi Vanicat
Subject: Re: [O] Bugs in org-cycle-internal-local?
Date: Thu, 27 Dec 2012 16:44:10 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Bastien <address@hidden> writes:

> Rémi Vanicat <address@hidden> writes:
>

[...]

> Well, it was, I just skipped it inadvertantly.
> I can reproduce the problem, but don't have an easy fix
> at hand.  If you find one, please let us know.

This seem to do it

>From e7344cd512af57fc9c85205876d6e3bfed2e53fe Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20Vanicat?= <address@hidden>
Date: Thu, 27 Dec 2012 16:41:28 +0100
Subject: [PATCH] Find end of section only at beginning of line when cycling

When hiding a section in non org-mode using outline-minor-mode, if the
next section begin with white space, its header line used to appeared
on the same line as the one we hide.
---
 lisp/org.el |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index ee4c70e..b1ffb8f 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -6399,7 +6399,8 @@ in special contexts.
        (setq eos (save-excursion
                    (org-end-of-subtree t)
                    (unless (eobp)
-                     (skip-chars-forward " \t\n"))
+                     (skip-chars-forward " \t\n")
+                     (forward-line 0))
                    (if (eobp) (point) (1- (point)))))
        (setq has-children
              (or (save-excursion
-- 
1.7.10.4



-- 
Rémi Vanicat

reply via email to

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