From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [babel] bug in ob-plantuml.el Date: Thu, 30 Sep 2010 14:17:12 -0600 Message-ID: <87bp7eho16.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=49123 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1RU3-0006w3-DW for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 18:20:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1RU2-0006Dw-IW for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 18:20:11 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:46202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1RU2-0006BU-FR for emacs-orgmode@gnu.org; Thu, 30 Sep 2010 18:20:10 -0400 Received: by mail-iw0-f169.google.com with SMTP id 33so4630375iwn.0 for ; Thu, 30 Sep 2010 15:20:10 -0700 (PDT) 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: Rainer M Krug Cc: emacs-orgmode Ah, Fixed, Thanks -- Eric Rainer M Krug writes: > Hi > > I just found a bug in ob-plantuml.el > > (if (string= (file-name-extension out-file) "svg") > "-tsvg" "") > > needs to be changed to > > (if (string= (file-name-extension out-file) "svg") > " -tsvg" "") > > > as otherwise, when using the file name extension .svg, the -tsvg is > concatenated behing -jar without space producing an error message. > > Cheers, > > Rainer