From mboxrd@z Thu Jan 1 00:00:00 1970 From: Erik Iverson Subject: Re: [babel] some lisp/slime progress Date: Sun, 20 Feb 2011 20:28:55 -0600 Message-ID: <4D61CDE7.3030404@ccbr.umn.edu> References: <4D61CC7E.7030109@ccbr.umn.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=51878 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrLWN-0004xc-OY for Emacs-orgmode@gnu.org; Sun, 20 Feb 2011 21:29:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PrLWM-0006iU-Iv for Emacs-orgmode@gnu.org; Sun, 20 Feb 2011 21:29:07 -0500 Received: from pegasus.biostat.wisc.edu ([144.92.73.35]:39692) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PrLWM-0006iN-D6 for Emacs-orgmode@gnu.org; Sun, 20 Feb 2011 21:29:06 -0500 Received: from [192.168.1.117] (c-24-118-198-210.hsd1.mn.comcast.net [24.118.198.210]) (authenticated bits=0) by pegasus.biostat.wisc.edu (8.13.6/8.13.6) with ESMTP id p1L2SxS1000978 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Sun, 20 Feb 2011 20:29:00 -0600 (CST) In-Reply-To: <4D61CC7E.7030109@ccbr.umn.edu> 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: Emacs-orgmode@gnu.org > Then, things like the following work, where I assume you've already > started M-x slime. > > #+begin_src emacs-lisp :session > > (defvar test1 "test1 value") > (defvar test2 "test2 value") > test2 > > #+end_src > > #+results: > : test2 value Er, not emacs-lisp, just lisp... like the following #+begin_src lisp :session (defvar test1 "test1 value") (defvar test2 "test2 value") test2 #+end_src #+results: : test2 value