From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: minted in Org 8.6 Date: Tue, 29 Apr 2014 08:43:25 -0700 Message-ID: <874n1cp2ea.fsf@berkeley.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50354) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfADf-0003gT-Vs for emacs-orgmode@gnu.org; Tue, 29 Apr 2014 11:45:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WfADY-0001jr-Gu for emacs-orgmode@gnu.org; Tue, 29 Apr 2014 11:45:19 -0400 Received: from plane.gmane.org ([80.91.229.3]:42254) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfADY-0001jf-AI for emacs-orgmode@gnu.org; Tue, 29 Apr 2014 11:45:12 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WfADV-0003iy-3K for emacs-orgmode@gnu.org; Tue, 29 Apr 2014 17:45:09 +0200 Received: from c-67-164-45-159.hsd1.ca.comcast.net ([67.164.45.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Apr 2014 17:45:09 +0200 Received: from richard.lawrence by c-67-164-45-159.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Apr 2014 17:45:09 +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 Cc: Ken Mankoff Hi Ken, Ken Mankoff writes: > #+begin_src emacs-lisp > ;; minted latex export > (setq org-export-latex-listings 'minted > org-export-latex-minted-options > '(("frame" "lines") > ("fontsize" "\\scriptsize") > ("linenos" ""))) > #+end_src > > If I test this with "emacs -Q", it works. If I test it with my default, > code is exported as "verbatim". This suggests the bug is in an init file > of mine. > > However, I have removed all Org sections of my init file. I am fairly > confident this is not a setting of mine, since if I look at the current > state included in a "org-submit-bug-report", the state is almost the > same between "emacs" and "emacs -Q", the only difference being Org 7.9 v. > Org 8.6, and a few default settings that have changed between the two. The new exporter, which arrived in 8.0, renamed most variables related to export. I think the variables you are setting here are now named: org-latex-listings org-latex-minted-options My guess is that renaming them in your init file will fix the problem. -- Best, Richard