From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-15?Q?Andreas_R=F6hler?= Subject: Re: :session question Date: Wed, 27 Mar 2013 14:26:03 +0100 Message-ID: <5152F36B.3040708@easy-emacs.de> References: <51501AF2.1070405@easy-emacs.de> <8738vjugwd.fsf@gmail.com> <51516699.6090604@gmail.com> <87ip4ezf93.fsf@med.uni-goettingen.de> <87fvzi72ve.fsf@gmail.com> <87ip4e5gai.fsf@gmail.com> <5152B34E.4020004@easy-emacs.de> <87fvzhmbul.fsf@med.uni-goettingen.de> <5152D9F8.3040404@easy-emacs.de> <10996.1364384905@alphaville> <5152E38A.4050602@easy-emacs.de> <87hajx109o.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38928) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKqLc-0001q7-9T for emacs-orgmode@gnu.org; Wed, 27 Mar 2013 09:25:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKqLX-0001Sx-EN for emacs-orgmode@gnu.org; Wed, 27 Mar 2013 09:25:00 -0400 Received: from moutng.kundenserver.de ([212.227.17.9]:59012) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKqLX-0001Sr-4g for emacs-orgmode@gnu.org; Wed, 27 Mar 2013 09:24:55 -0400 In-Reply-To: <87hajx109o.fsf@gmail.com> 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: Eric Schulte Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Am 27.03.2013 13:43, schrieb Eric Schulte: >>> >>> "org-R" is the name of the session. The code blocks illustrate that the >>> value of x (set in the first code block) is preserved and can be used >>> in the second (and subsequent) code blocks. >>> >>> Nick >>> >>> >> >> Okay, so the :session argument must not be repeated? >> > > No one has said or implied that. > Looks for me as this code from your example runs in session mode without explicit :session argument given: #+begin_src R x <- 1 x #+end_src #+RESULTS: : 1 #+begin_src R x #+end_src #+RESULTS: : 1 [ ... ]