From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: orgstuct++ does not lurk silently in the shadow Date: Thu, 03 May 2012 15:17:08 +0200 Message-ID: <87aa1pmmjv.fsf@gmail.com> References: <20120308070825.947091FDE8@saturn.ch.ristopher.com> <87haw8mf1r.fsf@ucl.ac.uk> <87ipgmkc3y.fsf@gnu.org> <20120429110535.956AE20268@saturn.ch.ristopher.com> <87ipgfdcfr.fsf@gnu.org> <87obq5611b.fsf@ucl.ac.uk> <871un1ih3j.fsf@gnu.org> <87ehr1mnez.fsf@gmail.com> <87pqaljtmd.fsf@altern.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:53691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SPvx1-0006zI-UO for emacs-orgmode@gnu.org; Thu, 03 May 2012 09:20:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SPvwz-0007gY-Vh for emacs-orgmode@gnu.org; Thu, 03 May 2012 09:20:07 -0400 Received: from mail-wg0-f41.google.com ([74.125.82.41]:64974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SPvwz-0007cd-MM for emacs-orgmode@gnu.org; Thu, 03 May 2012 09:20:05 -0400 Received: by wgbds1 with SMTP id ds1so313329wgb.0 for ; Thu, 03 May 2012 06:20:03 -0700 (PDT) In-Reply-To: <87pqaljtmd.fsf@altern.org> (Bastien's message of "Thu, 03 May 2012 15:12:42 +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: Bastien Cc: emacs-orgmode@gnu.org Hello, Bastien writes: > Nicolas Goaziou writes: > > I can reproduce the problem with > > (add-hook 'message-setup-hook 'turn-on-orgstruct++) > > I cannot reproduce it with > > (add-hook 'message-mode-hook 'turn-on-orgstruct++) > > Can you confirm this is the same for you? No, it happens with `message-mode-hook'. Here is the relevant part of my configuration: #+begin_src elisp (defun ngz-message-mode-hook-handler () (turn-on-flyspell) (turn-on-orgtbl) (turn-on-orgstruct++) (set (make-local-variable 'org-footnote-tag-for-non-org-mode-files) nil) (local-set-key (kbd "C-c C-x f") 'org-footnote-action)) (add-hook 'message-mode-hook 'ngz-message-mode-hook-handler) #+end_src Regards, -- Nicolas Goaziou