From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrei Jirnyi Subject: Problem with org-startup-indented Date: Tue, 18 Oct 2011 17:30:17 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34056) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGDUm-0001Sq-NG for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 13:30:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGDUl-0001f5-Ip for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 13:30:32 -0400 Received: from lo.gmane.org ([80.91.229.12]:39970) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGDUl-0001em-Dq for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 13:30:31 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RGDUj-0001Lg-7z for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 19:30:29 +0200 Received: from dhcp-129-105-201-81.kellogg.northwestern.edu ([129.105.201.81]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 18 Oct 2011 19:30:29 +0200 Received: from a-jirnyi by dhcp-129-105-201-81.kellogg.northwestern.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 18 Oct 2011 19:30:29 +0200 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: emacs-orgmode@gnu.org Hi all, There is a major issue with org-indent-mode under org-mode 7.7 (downloaded today with Emacs PPM, dated 2011-10-18) and Emacs 23.2. When org-startup-indented is set to "t", on opening any .org file the cursor immediately jumps to the end of file, and it is impossible to move it from there. Same happens if it is set to nil and I turn org-indent- mode on manually. It does seem to work under Emacs 23.3 though. A sample .emacs file (in its entirety) is below: (setq load-path (cons "~/elisp" load-path)) (require 'package) (package-initialize) ; causes major trouble... Investigate! (setq org-startup-indented t) --aj