From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Neff Subject: Re: Re: [ANN] Org-babel integrated into Org-mode Date: Thu, 24 Jun 2010 00:12:48 -0500 Message-ID: References: <87wrtp78rg.fsf@gmail.com> <87eifxmh57.fsf@gollum.intra.norang.ca> <878w655kmh.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=42636 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OReqk-00067x-U0 for emacs-orgmode@gnu.org; Thu, 24 Jun 2010 01:19:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ORek6-0004wU-UA for emacs-orgmode@gnu.org; Thu, 24 Jun 2010 01:12:52 -0400 Received: from mail-ww0-f41.google.com ([74.125.82.41]:34999) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ORek6-0004wI-M8 for emacs-orgmode@gnu.org; Thu, 24 Jun 2010 01:12:50 -0400 Received: by wwb31 with SMTP id 31so1314486wwb.0 for ; Wed, 23 Jun 2010 22:12:48 -0700 (PDT) In-Reply-To: <878w655kmh.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Schulte Cc: Bernt Hansen , Org Mode I checked out the latest org mode, and I'm getting "Symbol's function definition is void: second" I ran git-bisect, and the error was introduced with the merge of org-babel into the main branch. The code that's causing the error is here: #+tblname:shortcut-definition-list | Something | a | A33F7A0C-F974-4C7F-A4FD-1AAA6CF9C60E | #+srcname: map-nav(shortcut-definition-list=shortcut-definition-list) #+begin_src emacs-lisp (defun map-navigation-shortcuts(shortcut-def) (global-set-key (read-kbd-macro (second shortcut-def)) (lexical-let ((shortcut-def shortcut-def)) (lambda () (interactive) (org-id-goto (third shortcut-def)))))) (mapcar #'map-navigation-shortcuts shortcut-definition-list) ------------------------ This is the cool "use a table to map keyboard shortcuts" code that was given to me in this conversation: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg24971.html I've verified that the above code works with org-babel outside of the main branch, at this commit: commit a3cc050a9675127f4f9fb85ba30cb5c0b4417cf8 Author: Eric Schulte Date: Fri Apr 30 13:03:38 2010 -0600 Any ideas? Should I try to find the exact commit where it starts failing? Thanks, --Nate