Applied, thanks.

Andreas Burtzlaff <and...@gmx.net> writes:

> It was indeed org-modes rewrite of outline-end-of-subtree that
> triggered the misbehaviour.
>
> Here's the patch:
>
> diff --git a/lisp/org.el b/lisp/org.el
> index 74d7f78..c75f1b9 100644
> --- a/lisp/org.el
> +++ b/lisp/org.el
> @@ -16880,7 +16880,7 @@ If there is no such heading, return nil."
>    (if (eq major-mode 'org-mode)
>        (progn
>         (org-end-of-subtree nil t)
> -       (backward-char 1))
> +       (if (not (eobp)) (backward-char 1)))
>      ad-do-it))
>  
>  (defun org-forward-same-level (arg &optional invisible-ok)
>
> Andreas
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

-- 
 Bastien


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to