From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: =?UTF-8?B?UmU6IEJ1Zzogb2ItcGxhbnR1bWw6IHVzaW5nIEBzdGFydCBwcmVm?= =?UTF-8?B?aXggaW4gYnVmZmVyIHJldHVybnMgbmlsIGJvZHkgZHVlIHRvIG5pbCBhc3Np?= =?UTF-8?B?Z25tZW50cyBbTi9BIChOL0EgQCAvbml4L3N0b3JlLzFobXg1aDFrbjI1cDdz?= =?UTF-8?B?MzFoMzFkejdnM2tuMWRjNnF4LWVtYWNzLXBhY2thZ2VzLWRlcHMvc2hhcmUv?= =?UTF-8?B?ZW1hY3Mvc2l0ZS1saXNwL29yZy8pXQ==?= Date: Sat, 09 Nov 2019 10:10:56 +0200 Message-ID: <871ruhtqpb.fsf@iki.fi> References: <875zjv5lsf.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:37558) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iTLpu-0003yD-3l for emacs-orgmode@gnu.org; Sat, 09 Nov 2019 03:11:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iTLpt-0002gD-1a for emacs-orgmode@gnu.org; Sat, 09 Nov 2019 03:11:10 -0500 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:43184 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iTLps-0002e1-RL for emacs-orgmode@gnu.org; Sat, 09 Nov 2019 03:11:08 -0500 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iTLpp-000ZPy-De for emacs-orgmode@gnu.org; Sat, 09 Nov 2019 09:11:05 +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" To: emacs-orgmode@gnu.org Greetings Terje. Terje Larsen writes: > I noticed that I cannot run C-c C-c to convert plantuml source blocks > since the commit (4e854974be9788f029f2d73f829c4d51d2b83faf), see changes > at: > https://code.orgmode.org/bzg/org-mode/commit/4e854974be9788f029f2d73f829c4d51d2b83faf#diff-9c9a333463276ff17be763269a5042f92a40817R73 > > If I have a simple source block as such as: > > #+BEGIN_SRC plantuml :file output.png > @startuml > actor Foo1 > actor Foo2 > Foo1 -> Foo2 : Test > @enduml > #+END_SRC > > When I try to run C-c C-c I receive the following error message: > org-babel-execute-src-block: Wrong type argument: char-or-string-p, > nil I started using plantuml in org last week (and am enjoying it greatly), so take this with a hint of salt from a beginner. Still, at least in my installation, your source code block works fine without '@startuml' and '@enduml': #+BEGIN_SRC plantuml :file output.png actor Foo1 actor Foo2 Foo1 -> Foo2 : Test #+END_SRC All the best, Jarmo