From mboxrd@z Thu Jan 1 00:00:00 1970 From: henry atting Subject: batch compiling problem Date: Fri, 10 Jul 2015 17:34:46 +0200 Message-ID: <871tggdo15.fsf@posteo.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36307) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDaPM-0002q9-DE for emacs-orgmode@gnu.org; Fri, 10 Jul 2015 11:40:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZDaPG-0003KL-Tu for emacs-orgmode@gnu.org; Fri, 10 Jul 2015 11:40:11 -0400 Received: from plane.gmane.org ([80.91.229.3]:36136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDaPG-0003Ij-Mw for emacs-orgmode@gnu.org; Fri, 10 Jul 2015 11:40:06 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZDaPF-0003Ju-HF for emacs-orgmode@gnu.org; Fri, 10 Jul 2015 17:40:05 +0200 Received: from ip-109-45-129-162.web.vodafone.de ([109.45.129.162]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Jul 2015 17:40:05 +0200 Received: from atts.henry by ip-109-45-129-162.web.vodafone.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Jul 2015 17:40:05 +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 Hi, as of recently I cannot convert org files to html on the commandline (though converting flawlessly works within emacs). Org-mode version 8.3beta (release_8.3beta-1274-gc76fef The error message is: Symbol's value as variable is void: cl-struct-cl-structure-object-tags Makefile:10: recipe for target 'sheet' failed make: *** [sheet] Error 255 The according makefile recipe is: sheet: $(HOME)/misc/horg/ledger-queries.org $(HOME)/.org_batch_publish touch $(HOME)/misc/horg/ledger-queries.org emacs --batch -Q -l $(HOME)/.org_batch_publish --eval '(org-publish "org")' And the batch file: --8<---------------cut here---------------start------------->8--- ;; -*- mode: emacs-lisp -*- (let* ((my-lisp-dir "~/dummy_layer/rechner/emacs+/") (default-directory my-lisp-dir) (orig-load-path load-path)) (setq load-path (cons my-lisp-dir nil)) (normal-top-level-add-subdirs-to-load-path) (nconc load-path orig-load-path)) (require 'org) ;;____________________________________________________________________setup (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t) (dot . t) (ledger . t) (shell . t) (gnuplot . t) (latex . t))) ;; I don't want to be prompted on every code block evaluation (setq org-confirm-babel-evaluate nil) (setq org-export-allow-BIND t org-export-creator-info nil org-html-creator-string "" org-html-date-format-string "%d/%m/%Y %R" org-html-postamble nil) (setq org-publish-project-alist '(("org" :base-directory "~/misc/horg/" :publishing-directory "~/misc/public" :section-numbers nil ; :table-of-contents t ; :html-preamble nil :publishing-function org-html-publish-to-html :style "") ("org-static" :base-directory "~/misc/horg/" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/misc/public/" :recursive t :publishing-function org-publish-attachment ) )) ;(org-src-fontify-natively t) --8<---------------cut here---------------end--------------->8--- henry