1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-22 07:09:47 +00:00

Fix old Babel syntax

This commit is contained in:
Sebastien Vauban 2012-02-16 15:50:17 +01:00 committed by Eric Schulte
parent bf238997a9
commit 2d78957c5c

View File

@ -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))))