From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Millar via Emacs-orgmode Subject: add names to org-babel-header-arg-names Date: Fri, 6 Sep 2019 17:28:49 -0400 Message-ID: <5b4a6f24-ddd2-9d35-136a-99b4df0b5927@verizon.net> Reply-To: Charles Millar Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:42065) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i6Lmq-0005lC-2a for emacs-orgmode@gnu.org; Fri, 06 Sep 2019 17:28:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i6Lmn-00057t-N3 for emacs-orgmode@gnu.org; Fri, 06 Sep 2019 17:28:54 -0400 Received: from sonic314-14.consmr.mail.bf2.yahoo.com ([74.6.132.124]:38337) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i6Lmn-000577-Eu for emacs-orgmode@gnu.org; Fri, 06 Sep 2019 17:28:53 -0400 Content-Language: en-US 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" Hi, To avoid errors while running org-lint in an org file with many recutils source blocks I have added the following to my init.el file (setq recutils-babel-header-arg-names '(data type fields join sort groupby)) ;; cmdline already included in org-babel-header-arg-names so not part of above list (setq org-babel-header-arg-names (concatenate 'list org-babel-header-arg-names recutils-babel-header-arg-names)) It appears that there are no problems, Never the less, Is there a "better" way? For that matter, is there a safer way? Charlie Millar