From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thierry Banel Subject: Re: Problem using org-sbe Date: Sun, 21 Feb 2016 21:10:42 +0100 Message-ID: <56CA19C2.8040801@free.fr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55066) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXaLA-0006zL-FD for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 15:10:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXaL7-0004oP-4T for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 15:10:48 -0500 Received: from smtp1-g21.free.fr ([212.27.42.1]:60988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXaL6-0004oJ-NR for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 15:10:45 -0500 Received: from [IPv6:2a01:e35:2e21:def0:a03c:4513:909b:714e] (unknown [IPv6:2a01:e35:2e21:def0:a03c:4513:909b:714e]) by smtp1-g21.free.fr (Postfix) with ESMTP id 5123994016D for ; Sun, 21 Feb 2016 21:08:09 +0100 (CET) In-Reply-To: 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: emacs-orgmode@gnu.org Try typing C-c C-c on the line (defun fibbd ...) This will actually define fibbd. Then update the table with C-u C-c * Le 21/02/2016 06:24, Bachir El Khadir a =E9crit : > Hello all, > I am new to org-mode. I have just installed the latest version using = el-get, but I am having a very annoying problem. > The command org-sbe doesn't seem to work. > Here is a minimal example that I took from the doc: > > #+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=3D2 :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=3D'(org-sbe "fibbd" (n $1)) > > As you can see I keep getting #ERROR =20 > Am i doing something wrong? > Thanks a lot > > >