From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: [PATCH] Fix old Babel syntax in library-of-babel.org Date: Sat, 18 Feb 2012 09:16:40 -0700 Message-ID: <87fwe8ruaf.fsf@gmx.com> References: <8039aavn4x.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rymxw-0001Js-IV for emacs-orgmode@gnu.org; Sat, 18 Feb 2012 11:16:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rymxv-00020n-62 for emacs-orgmode@gnu.org; Sat, 18 Feb 2012 11:16:52 -0500 Received: from mailout-us.gmx.com ([74.208.5.67]:41501) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Rymxu-00020g-Sz for emacs-orgmode@gnu.org; Sat, 18 Feb 2012 11:16:51 -0500 In-Reply-To: <8039aavn4x.fsf@somewhere.org> (Sebastien Vauban's message of "Thu, 16 Feb 2012 16:00:46 +0100") 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: Sebastien Vauban Cc: emacs-orgmode@gnu.org Applied, Thanks "Sebastien Vauban" writes: > From 3569c16e1d4270e6004441d8cdcc92801b3a01cd Mon Sep 17 00:00:00 2001 > From: Sebastien Vauban > Date: Thu, 16 Feb 2012 15:50:17 +0100 > Subject: [PATCH] Fix old Babel syntax > > --- > contrib/babel/library-of-babel.org | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/contrib/babel/library-of-babel.org b/contrib/babel/library-of-babel.org > index ecad0fe..0098e72 100644 > --- a/contrib/babel/library-of-babel.org > +++ b/contrib/babel/library-of-babel.org > @@ -143,7 +143,7 @@ normal document. > #+end_src > > example usage > -: #+source: fibs > +: #+name: fibs > : #+begin_src emacs-lisp :var n=8 > : (flet ((fib (m) (if (< m 2) 1 (+ (fib (- m 1)) (fib (- m 2)))))) > : (mapcar (lambda (el) (list el (fib el))) (number-sequence 0 (- n 1)))) > -- > 1.7.5.1 > > > Best regards, > Seb -- Eric Schulte http://cs.unm.edu/~eschulte/