From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guido Van Hoecke Subject: Help needed tangling with orgmode v9 Date: Fri, 31 Mar 2017 20:45:30 +0200 Message-ID: <868tnlxp2t.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40225) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cu1YG-0001Is-8S for emacs-orgmode@gnu.org; Fri, 31 Mar 2017 14:45:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cu1YC-0002ZF-Vv for emacs-orgmode@gnu.org; Fri, 31 Mar 2017 14:45:36 -0400 Received: from mail-wm0-x22a.google.com ([2a00:1450:400c:c09::22a]:38494) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cu1YC-0002Xg-QB for emacs-orgmode@gnu.org; Fri, 31 Mar 2017 14:45:32 -0400 Received: by mail-wm0-x22a.google.com with SMTP id t189so5785199wmt.1 for ; Fri, 31 Mar 2017 11:45:31 -0700 (PDT) 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: orgmode Hi, I used to generate my .emacs (named emacs-guivho.el) from emacs-guivho.org and I just realised that this no longer works since I switched from orgmode v8 to v9 some 10 days ago. These are the header lines I had in the org file: #+TITLE: Emacs config file guivho +AUTHOR: Guido Van Hoecke +EMAIL: (concat "guivho" at-sign "gmail.com") #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:4 num:nil #+SEQ_TODO: TODO FIXME DOESN'T_WORK | WORKS #+PROPERTY: tangle emacs-guivho.el #+PROPERTY: padline yes #+PROPERTY: eval no Somehow this does no longer work Running org-lint indicates that these are deprecated: 10 low Deprecated syntax for "tangle". Use header-args instead 11 low Deprecated syntax for "padline". Use header-args instead 12 low Deprecated syntax for "eval". Use header-args instead So I changed the #+PROPERTY lines into: #+PROPERTY: header-args :tangle emacs-guivho.el #+PROPERTY: header-args :padline yes #+PROPERTY: header-args :eval never #+PROPERTY: header-args :eval no #+PROPERTY: header-args :exports code Still doesn't work though: when running org-babel-tangle it reports Tangled 0 code blocks from emacs-guivho.org Please advise. Thanks in advance, -- Guido Fourth Law of Revision: It is usually impractical to worry beforehand about interferences -- if you have none, someone will make one for you.