From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: Re: [BUG] Loading ob-shell fails with lexical binding Date: Mon, 20 Jun 2016 14:00:45 -0400 Message-ID: <87oa6vloz6.fsf@kyleam.com> References: <87h9cnyhux.fsf@kyleam.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58444) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF3VI-00046A-C1 for emacs-orgmode@gnu.org; Mon, 20 Jun 2016 14:00:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bF3VE-0007Pe-AN for emacs-orgmode@gnu.org; Mon, 20 Jun 2016 14:00:55 -0400 Received: from pb-smtp1.pobox.com ([64.147.108.70]:60175 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF3VD-0007PJ-Rp for emacs-orgmode@gnu.org; Mon, 20 Jun 2016 14:00:52 -0400 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 716A826258 for ; Mon, 20 Jun 2016 14:00:49 -0400 (EDT) Received: from pb-smtp1.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 6AD6226257 for ; Mon, 20 Jun 2016 14:00:49 -0400 (EDT) Received: from localhost (unknown [130.132.173.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp1.pobox.com (Postfix) with ESMTPSA id 24E8D26256 for ; Mon, 20 Jun 2016 14:00:49 -0400 (EDT) In-Reply-To: (Charles Millar's message of "Mon, 20 Jun 2016 12:53:21 -0400") 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" To: emacs-orgmode@gnu.org Charles Millar writes: > Hi, > > > On 06/20/2016 11:56 AM, Kyle Meyer wrote: >> Hello, >> >> After moving ob-shell.el over to lexical binding (2108f0c), emacs -Q >> with "(require 'ob-shell)" reports >> >> Debugger entered--Lisp error: (wrong-type-argument sequencep function) >> concat("org-babel-execute:" function) >> (intern (concat "org-babel-execute:" name)) >> [...] >> >> It seems to be the :initialize value of org-babel-shell-names that is >> problematic. >> >> > This morning in order to load my init file I had to comment out (shell > . t) in org-babel-load-languages Yep, org-babel-load-languages will end up processing (shell . t) to (require 'ob-shell), so this is the same underlying issue. -- Kyle