From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bachir El Khadir Subject: Problem using org-sbe Date: Sun, 21 Feb 2016 00:24:05 -0500 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45581) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXMVB-0006KZ-UZ for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 00:24:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXMV6-0000ow-Uk for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 00:24:13 -0500 Received: from mail-qg0-x22e.google.com ([2607:f8b0:400d:c04::22e]:35937) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXMV6-0000or-NK for emacs-orgmode@gnu.org; Sun, 21 Feb 2016 00:24:08 -0500 Received: by mail-qg0-x22e.google.com with SMTP id y9so92037873qgd.3 for ; Sat, 20 Feb 2016 21:24:08 -0800 (PST) Received: from nat-oitwireless-inside-vapornet100-c-26906.princeton.edu (nat-oitwireless-outside-vapornet3-o-99.Princeton.EDU. [140.180.254.111]) by smtp.gmail.com with ESMTPSA id e24sm7905763qkj.8.2016.02.20.21.24.06 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 20 Feb 2016 21:24:06 -0800 (PST) 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 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