From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Andreas_R=F6hler?= Subject: Re: BUG docu org-babel-default-header-args Date: Fri, 05 Apr 2013 19:56:54 +0200 Message-ID: <515F1066.2000306@easy-emacs.de> References: <5152D0C8.6030308@easy-emacs.de> <87txnkj2h4.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOArM-0003Fr-Gl for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 13:55:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UOArH-0002SB-Uu for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 13:55:32 -0400 Received: from moutng.kundenserver.de ([212.227.17.9]:58950) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOArH-0002S0-Lg for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 13:55:27 -0400 In-Reply-To: <87txnkj2h4.fsf@bzg.ath.cx> 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: emacs-orgmode Am 05.04.2013 19:14, schrieb Bastien: > Hi Andreas, > > Andreas Röhler writes: > >> http://orgmode.org/manual/System_002dwide-header-arguments.html#System_002dwide-header-arguments >> Org Mode Info >> System-wide header arguments >> ............................ >> >> System-wide values of header arguments can be specified by customizing >> the `org-babel-default-header-args' variable: >> >> ;;;;; >> >> Seems not the case as in ob-core.el >> >> (defvar org-babel-default-header-args >> >> ;;;;; > > Not sure what you mean -- do you mean that saying "customizing" in the > manual is not appropriate because `org-babel-default-header-args' is a > variable (defvar) and not an option (defcustom)? > > Thanks for further clarification! > Hi Bastien, customization needs a defcustom, not a defvar (defvar org-babel-default-header-args '((:session . "none") (:results . "replace") (:exports . "code") (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no") (:padnewline . "yes")) "Default arguments to use when evaluating a source block.") This var user can't customize, as Info tells falsely. Cheers, Andreas