From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sebastien Vauban" Subject: [PATCH] Fix old Babel syntax in library-of-babel.org Date: Thu, 16 Feb 2012 16:00:46 +0100 Message-ID: <8039aavn4x.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: 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-mXXj517/zsQ@public.gmane.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org >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 -- Sebastien Vauban