From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: ditaa.jar not found Date: Fri, 19 Jun 2009 10:51:29 +0200 Message-ID: <87k538vc6m.fsf@kassiopeya.MSHEIMNETZ> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MHZl2-0008Ij-CH for emacs-orgmode@gnu.org; Fri, 19 Jun 2009 04:47:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MHZkx-0008GB-GG for emacs-orgmode@gnu.org; Fri, 19 Jun 2009 04:47:35 -0400 Received: from [199.232.76.173] (port=34234 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHZkx-0008G3-29 for emacs-orgmode@gnu.org; Fri, 19 Jun 2009 04:47:31 -0400 Received: from mail.gmx.net ([213.165.64.20]:42482) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MHZkw-0005Y7-9h for emacs-orgmode@gnu.org; Fri, 19 Jun 2009 04:47:30 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= The path to ditaa.jar seems to have changed. Debugger entered--Lisp error: (error "Could not find ditaa.jar at /home/sebastian/emacs/lisp/ext/org-mode/scripts/ditaa.jar") signal(error ("Could not find ditaa.jar at /home/sebastian/emacs/lisp/ext/org-mode/scripts/ditaa.jar")) .... This patch fixes it: --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=ditaa-path.patch diff --git a/lisp/org-exp-blocks.el b/lisp/org-exp-blocks.el index 56adb9f..8d6ad60 100644 --- a/lisp/org-exp-blocks.el +++ b/lisp/org-exp-blocks.el @@ -223,8 +223,10 @@ specified in BLOCKS which default to the value of "scripts" (file-name-as-directory (expand-file-name + "contrib" + (expand-file-name ".." - (file-name-directory (or load-file-name buffer-file-name))))))) + (file-name-directory (or load-file-name buffer-file-name)))))))) "Path to the ditaa jar executable") (defun org-export-blocks-format-ditaa (body &rest headers) --=-=-= Sebastian --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--