Re: [O] [PATCH] Fix old Babel syntax in library-of-babel.org

2012-02-18 Thread Eric Schulte
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/



[O] [PATCH] Fix old Babel syntax in library-of-babel.org

2012-02-16 Thread Sebastien Vauban
>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