Samuel Wales <samolog...@gmail.com> writes: > quick and dirty bug report. recent org maint.
I use the following patch to fix most navigation problems I encountered. I think it will fix yours too. more details on what the problem actually is can be found at http://permalink.gmane.org/gmane.emacs.orgmode/87598 here's the patch : Modified lisp/org.el diff --git a/lisp/org.el b/lisp/org.el index 6fb0387..d5a9380 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5484,7 +5484,9 @@ The following commands are available: (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify) (defsubst org-fix-ellipsis-at-bol () - (save-excursion (set-window-start (selected-window) (window-start)))) + nil + ;; (save-excursion (set-window-start (selected-window) (window-start))) + ) (defun org-find-invisible-foreground () (let ((candidates (remove -- Nico.