emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [ob, bug?] org-sbe


From: Rasmus
Subject: [O] [ob, bug?] org-sbe
Date: Mon, 29 Sep 2014 22:13:10 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

Hi,

I used sbe a long time ago.  Apparently it has been renamed to
org-spe.

I was unable get org-spe working as a dumb currency converter, so I
tried the example in the top of ob-table.el.  However, I'm also unable
to get this example working, even starting from emacs -q. . .

This is the suggested test in ob-table.el:

#+begin_src emacs-lisp :results silent
  (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
#+end_src

#+name: fibbd
#+begin_src emacs-lisp :var n=2 :results silent
(fibbd n)
#+end_src

| original | fibbd  |
|----------+--------|
|        0 | #ERROR |
|        1 | #ERROR |
|        2 | #ERROR |
|        3 | #ERROR |
|        4 | #ERROR |
|        5 | #ERROR |
|        6 | #ERROR |
|        7 | #ERROR |
|        8 | #ERROR |
|        9 | #ERROR |
#+TBLFM: $2='(org-sbe 'fibbd (n $1))

Did the syntax of org-sbe change or am just missing something obvious here?

Thanks in advance,
Rasmus

-- 
C is for Cookie






reply via email to

[Prev in Thread] Current Thread [Next in Thread]