From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Error: org-babel-execute-src-block: No org-babel-execute function for conf! Date: Mon, 07 Nov 2016 01:28:50 +0100 Message-ID: <87pom8ku9p.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3Xny-0001iO-RT for emacs-orgmode@gnu.org; Sun, 06 Nov 2016 19:28:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3Xnu-0003dx-3O for emacs-orgmode@gnu.org; Sun, 06 Nov 2016 19:28:54 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:34436) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c3Xnt-0003cn-Th for emacs-orgmode@gnu.org; Sun, 06 Nov 2016 19:28:50 -0500 In-Reply-To: (Xebar Saram's message of "Sun, 6 Nov 2016 15:20:44 +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" To: Xebar Saram Cc: org mode Hello, Xebar Saram writes: > I have my dot files in orgmode format and have been using it for a year or > so with great success. today i noticed that code block (conf blocks) that i > used to tangle recursively have stopped working and i get this error > > org-babel-execute-src-block: No org-babel-execute function for conf! > > > this is an example of how the code block looks > > > *** sxhkd > :PROPERTIES: > :ID: 781eaed4-2ce8-49ff-9516-b84de52cfaab > :tangle: ~/.config/sxhkd/sxhkdrc > :END: > https://github.com/baskerville/sxhkd > **** X system > :PROPERTIES: > :ID: 4a3ed3e0-fdf8-4fd1-bc2b-2ab87cae3633 > :END: > [...] > any one knows whats changed with latest org? According to the release notes, "Incompatible changes" section, *** Old Babel header properties are no longer supported Using header arguments as property names is no longer possible. As such, the following #+BEGIN_EXAMPLE ,* Headline :PROPERTIES: :exports: code :var: a=1 b=2 :var+: c=3 :END: #+END_EXAMPLE should be written instead #+BEGIN_EXAMPLE ,* Headline :PROPERTIES: :header-args: :exports code :header-args: :var a=1 b=2 :header-args+: :var c=3 :END: #+END_EXAMPLE Regards, -- Nicolas Goaziou