From mboxrd@z Thu Jan 1 00:00:00 1970 From: Antti Kaihola Subject: Re: Re: org-indent mode not indenting free text? Date: Fri, 3 Dec 2010 15:30:53 +0200 Message-ID: References: <4CEBF039.6040503@ccbr.umn.edu> <87aakzj2l9.wl%n.goaziou@gmail.com> <87r5ebzsll.wl%dmaus@ictsoc.de> <87oc94hqv2.fsf@Rainer.invalid> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=49909 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POViy-0008Oh-H3 for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 08:30:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POVix-0006Ew-Ac for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 08:30:56 -0500 Received: from mail-iw0-f169.google.com ([209.85.214.169]:46425) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POVix-0006Er-4r for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 08:30:55 -0500 Received: by iwn36 with SMTP id 36so559559iwn.0 for ; Fri, 03 Dec 2010 05:30:54 -0800 (PST) In-Reply-To: <87oc94hqv2.fsf@Rainer.invalid> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Achim Gratz Cc: emacs-orgmode@gnu.org 2010/12/2 Achim Gratz : > What version of Emacs are you running? This is: GNU Emacs 23.1.50.1 (i486-pc-linux-gnu, GTK+ Version 2.18.0) of 2009-09-27 on palmer, modified by Debian >=A0What does C-h f with-silent-modifications result in? with-silent-modifications is a Lisp macro in `org-macs.el'. (with-silent-modifications ORG-UNMODIFIED) Not documented. >=A0Could you back out the change > (most likely the defmacro for with-silent-modifications in org-macs.el, > even though I have no clue why this would interact with org-indent-mode > as it should not be defined for versions >23.1) and tell us if that > solves your problem (which I can't test because org-indent-mode doesn't > even start on Emacs 23.1)? Yes it does! I commented out: ;;(if (or (< emacs-major-version 23) ;; (and (<=3D emacs-major-version 23) ;; (< emacs-minor-version 2))) ;; (defmacro with-silent-modifications ;; (org-unmodified))) and it now works correctly. Thanks a lot!