From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Craveiro Subject: Problems exporting org-babel to HTML Date: Thu, 29 Dec 2011 20:44:18 +0000 Message-ID: <1325191458.28295.24.camel@lorenz> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44078) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgMps-0003kf-Ag for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 15:44:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RgMpq-0004km-Sm for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 15:44:24 -0500 Received: from mail-ww0-f49.google.com ([74.125.82.49]:37967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RgMpq-0004kg-OO for emacs-orgmode@gnu.org; Thu, 29 Dec 2011 15:44:22 -0500 Received: by wgbdt11 with SMTP id dt11so18508546wgb.30 for ; Thu, 29 Dec 2011 12:44:21 -0800 (PST) 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 Hi Org-Moders, I've got a problem with org-babel HTML exports and I wonder if you can help me. I'm using an up-to-date debian "emacs-snapshot" as follows: - GNU Emacs 24.0.92.1 (x86_64-pc-linux-gnu, GTK+ Version 3.2.3) of 2011-12-27 on zelenka, modified by Debian - Org-mode version 7.7 The problem manifests itself when exporting in batch mode (please see below for source org file): $ /usr/bin/emacs-snapshot --batch --visit=test.org --funcall org-export-as-html-batch Loading 00debian-vars... Loading /etc/emacs/site-start.d/50autoconf.el (source)... Loading /etc/emacs/site-start.d/50cmake-data.el (source)... Loading /etc/emacs/site-start.d/50devhelp.el (source)... Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)... Skipping dictionaries-common setup for emacs-snapshot Loading /etc/emacs/site-start.d/50global.el (source)... Loading /etc/emacs/site-start.d/50gtk-doc-tools.el (source)... Loading /etc/emacs/site-start.d/50psvn.el (source)... Exporting... Symbol's function definition is void: copy-seq This error is very similar to what is described here: - http://lists.gnu.org/archive/html/emacs-orgmode/2011-07/msg01203.html - #634695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634695 However, from reading that thread it appears I should already have this fix. Can you please confirm if this is the case? Also, if v7.7 does not have the fix, is there a workaround? The org-file i'm using is as follows: #+tblname: test_chart | Day | Expected | Actual | |-----+----------+--------| | 0 | 8 | 8 | | 1 | 7 | 8 | | 2 | 6 | 8 | | | | | #+begin_src gnuplot :var data=test_chart :file test.png :exports both reset set termoption dash set terminal png font "/usr/share/fonts/truetype/inconsolata/Inconsolata.otf" 14 set title "Test Chart" set auto x set border linewidth 1.5 set style line 1 linecolor rgb "red" linetype 2 linewidth 3 pointtype 1 set style line 2 linecolor rgb "orange" linetype 2 linewidth 3 pointtype 1 set ylabel "Story Points" set yrange [0:10] set ytics 0,1,10 set xlabel "Time" set xrange [0:15] set xtics 0,1,15 plot data using 1 title 'Expected' linestyle 1 with lines, \ data using 2 title 'Actual' linestyle 2 with lines #+end_src #+results: [[file:test_chart.png]] Thanks for a wonderful piece of software and for your time. marco