From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Richard Subject: Re: navigation broken in recent maint Date: Thu, 19 Jun 2014 08:14:26 +0200 Message-ID: <87d2e5qvct.fsf@geodiff-mac3.ulb.ac.be> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38120) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxVcp-0001eT-15 for emacs-orgmode@gnu.org; Thu, 19 Jun 2014 02:15:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxVci-0001L0-R5 for emacs-orgmode@gnu.org; Thu, 19 Jun 2014 02:15:06 -0400 Received: from mxin.ulb.ac.be ([164.15.128.112]:16854) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxVci-0001Kg-Ko for emacs-orgmode@gnu.org; Thu, 19 Jun 2014 02:15:00 -0400 In-Reply-To: (Samuel Wales's message of "Tue, 17 Jun 2014 16:56:52 -0700") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Samuel Wales Cc: emacs-orgmode@gnu.org Samuel Wales 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.