From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: Re: Org, org-plot, and babel+gnuplot on Windows Date: Fri, 17 Sep 2010 12:46:31 -0400 Message-ID: <87sk1848t4.fsf@gmail.com> References: <87d3sc5ujf.fsf@gmail.com> <871v8smmhe.fsf@mundaneum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=57128 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Owe57-0005cN-Da for emacs-orgmode@gnu.org; Fri, 17 Sep 2010 12:46:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Owe55-0006M5-B3 for emacs-orgmode@gnu.org; Fri, 17 Sep 2010 12:46:37 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:57982) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Owe55-0006Lu-84 for emacs-orgmode@gnu.org; Fri, 17 Sep 2010 12:46:35 -0400 Received: by ywl5 with SMTP id 5so1213122ywl.0 for ; Fri, 17 Sep 2010 09:46:34 -0700 (PDT) In-Reply-To: <871v8smmhe.fsf@mundaneum.com> (=?utf-8?Q?=22S=C3=A9bastien?= Vauban"'s message of "Fri, 17 Sep 2010 17:13:49 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: =?utf-8?Q?S=C3=A9bastien?= Vauban Cc: emacs-orgmode@gnu.org S=C3=A9bastien Vauban writes: > Hi Eric, > >> 1) Babel relies on gnuplot-mode for session based evaluation >> 2) gnuplot-mode does not work on windows >> >> Which results in the need to add a ":session none" header argument on >> windows to avoid session based evaluation. > > I thought that =3D:session none=3D was the default. See > http://orgmode.org/manual/session.html#session. > > So, writing nothing is OK, or do you really need to *explicitly* dismiss = the > session? > Hi Seb, You are correct that =3D:session none=3D is the global default, however header arguments can be specified on the global, language, file, headline, and code block scale, and it so happens that =3D:session=3D is specified in `org-babel-default-header-args:gnuplot' on the language level for gnuplot. This could undone with something like the following. (setq org-babel-default-header-args:gnuplot '((:results . "file") (:exports . "results"))) Best -- Eric > > Best regards, > Seb