From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: how do you compose mails in Gnus with org-mode Date: Wed, 07 Mar 2018 18:46:26 +0100 Message-ID: <87bmfzok25.fsf@gmail.com> References: <87inafvrwi.fsf@gmail.com> <878tb9bcde.fsf@gmail.com> <87r2oxpl6y.fsf@mat.ucm.es> <87po4hrrj9.fsf@gmail.com> <87lgf581vu.fsf@mat.ucm.es> <87a7vlro6f.fsf@gmail.com> <87zi3kqkbp.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38156) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1etd9V-0004uR-C8 for emacs-orgmode@gnu.org; Wed, 07 Mar 2018 12:46:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1etd9R-0006uk-CA for emacs-orgmode@gnu.org; Wed, 07 Mar 2018 12:46:57 -0500 Received: from [195.159.176.226] (port=45337 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1etd9R-0006uK-4R for emacs-orgmode@gnu.org; Wed, 07 Mar 2018 12:46:53 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1etd7L-0001ZF-Iy for emacs-orgmode@gnu.org; Wed, 07 Mar 2018 18:44:43 +0100 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" To: emacs-orgmode@gnu.org Uwe Brauer writes: > > Uwe Brauer writes: > > > Wow, emacs 27 ... I'm on Archlinux and always thought packages a > > pretty > > up-to-date. > > Right Ubuntu officially only ships 24, which is pretty old. > > Well it is directly form git master, so it is a pre release. > The official release is 26. Then Archlinux is not that much out of date. > > Maybe outline has changed somehow between Emacs 25 and Emacs 27? > > But I don't think so, the error you send is pretty typical for > > incomplete configuration. > > I think at the weekend, I will debug the problem. It might be that there > some parts of my init file which are in conflict with your package. A good start would be to try outshine with emacs-lisp mode. With your outshine config done, write a file like foo.el ,---- | ;;; 1st level header | ;;;; Sum | (+ 1 1) | ;;;; Subtract | (- 2 1) `---- or ,---- | ;; * 1st level header | ;; ** Sum | (+ 1 1) | ;; ** Subtract | (- 2 1) `---- and see if you got headline fontification and all the outshine functionality. If that works, its a message-mode problem. If not, a genereal problem with your config. > [...] > BTW, you recommended > (require 'outorg-export) > > I installed your package via the package system, so I don't see that > file. Where can I obtain it from? It's an extension to outorg: ,---- | ;;; outorg-export.el -- Automated exporting through org | | ;; Author: Jonathan Leech-Pepin