From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: New error when setting the publishing directory Date: Fri, 29 Jan 2016 23:07:36 +0100 Message-ID: <87mvroca53.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQ7XA-0000CT-4I for emacs-orgmode@gnu.org; Mon, 01 Feb 2016 01:00:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQ7X6-0006vd-Sa for emacs-orgmode@gnu.org; Mon, 01 Feb 2016 01:00:19 -0500 Received: from plane.gmane.org ([80.91.229.3]:60681) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQ7X6-0006vY-Ls for emacs-orgmode@gnu.org; Mon, 01 Feb 2016 01:00:16 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aQ7X4-0000zX-1f for emacs-orgmode@gnu.org; Mon, 01 Feb 2016 07:00:14 +0100 Received: from 37.162.58.40 ([37.162.58.40]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Feb 2016 07:00:14 +0100 Received: from j.cubizolles by 37.162.58.40 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Feb 2016 07:00:14 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I've been using the following for a long time to export to a remote ftp site. --8<---------------cut here---------------start------------->8--- #+begin_src emacs-lisp :exports none (setq org-export-in-background t) (setq org-publish-project-alist '(("orgfiles" :publishing-directory "/ftp:login@ftpserver:" ))) #+end_src --8<---------------cut here---------------end--------------->8--- Since a few days, this fails with: --8<---------------cut here---------------start------------->8--- Debugger entered--Lisp error: (wrong-type-argument listp org-table) org-activate-plain-links(#) font-lock-fontify-keywords-region(251 # nil) font-lock-default-fontify-region(251 # nil) font-lock-fontify-region(251 #) org-table-align() org-babel-insert-result((("orgfiles" :publishing-directory "/ftp:mpsi2llg@ftpperso.free.fr:")) ("replace") ("emacs-lisp" "(setq org-export-in-background t)\n(setq org-publish-project-alist\n '((\"orgfiles\"\n :publishing-directory \"/ftp:mpsi2llg@ftpperso.free.fr:\"\n )))" ((:comments . "") (:shebang . "") (:cache . "no") (:padline . "") (:noweb . "no") (:tangle . "no") (:exports . "none") (:results . "replace") (:session . "none") (:hlines . "no") (:result-type . value) (:result-params "replace") (:rowname-names) (:colname-names)) "" nil 0 1) nil 0 "emacs-lisp") org-babel-execute-src-block(nil) org-babel-execute-src-block-maybe() org-babel-execute-maybe() org-babel-execute-safely-maybe() run-hook-with-args-until-success(org-babel-execute-safely-maybe) org-ctrl-c-ctrl-c(nil) funcall-interactively(org-ctrl-c-ctrl-c nil) call-interactively(org-ctrl-c-ctrl-c nil nil) command-execute(org-ctrl-c-ctrl-c) --8<---------------cut here---------------end--------------->8--- Julien.