From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: [setting is not read] (was: org-table export to ods/xlsx etc) Date: Mon, 26 Jun 2017 15:27:36 +0000 Message-ID: <87podqg45z.fsf_-_@mat.ucm.es> References: <87lgos9cpm.fsf@delle7240.chemeng.ucl.ac.uk> <8760fuehq9.fsf@t3610> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dPVvb-00052K-C3 for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 11:27:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dPVvY-0001aI-6M for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 11:27:51 -0400 Received: from [195.159.176.226] (port=39375 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dPVvX-0001ZK-W6 for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 11:27:48 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1dPVvN-0004HI-O8 for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 17:27:37 +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" To: emacs-orgmode@gnu.org >>> "Eric" == Eric S Fraga writes: > On Saturday, 17 Jun 2017 at 14:54, Nicolas Goaziou wrote: > [...] >> According to `org-odt-convert-processes', `org-odt-convert-capabilities' >> and `org-odt-convert', isn't it already possible? > Indeed. Adding this > (add-to-list 'org-odt-convert-processes '("gnumeric" "ssconvert %i %o")) > (setq org-odt-convert-process "gnumeric") Odd thing. I put these lines in my org_init.el file byte compile and restart emacs but then (org-odt-do-reachable-formats "csv") returns Nil I have to explicitly eval the two settings (add-to-list 'org-odt-convert-processes '("gnumeric" "/usr/bin/ssconvert %i %o")) (setq org-odt-convert-process "gnumeric") What do I miss? I could use customize of course, but I would like to understand the problem.