From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Scheme code block gives false error message Date: Tue, 15 Sep 2015 15:14:25 -0400 Message-ID: <874mivtrzi.fsf@alphaville.usersys.redhat.com> References: <877fnuj2q4.fsf@pierrot.dokosmarshall.org> <87y4gagkxc.fsf@pierrot.dokosmarshall.org> <87twqxglwu.fsf@pierrot.dokosmarshall.org> <87lhc8gywz.fsf@pierrot.dokosmarshall.org> <87h9mwgup6.fsf@pierrot.dokosmarshall.org> <87d1xkgue0.fsf@pierrot.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zbvgl-0007yA-BW for emacs-orgmode@gnu.org; Tue, 15 Sep 2015 15:14:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zbvgg-0006MQ-8O for emacs-orgmode@gnu.org; Tue, 15 Sep 2015 15:14:47 -0400 Received: from plane.gmane.org ([80.91.229.3]:37534) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zbvgg-0006La-20 for emacs-orgmode@gnu.org; Tue, 15 Sep 2015 15:14:42 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZbvgY-0001JU-Hd for emacs-orgmode@gnu.org; Tue, 15 Sep 2015 21:14:34 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Sep 2015 21:14:34 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Sep 2015 21:14:34 +0200 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 Lawrence Bottorff writes: > . . . quick question, Nick (et al): how do I (enlightened beginner) apply the above patch? I'm using > latest ELPA from org-mode repo. > Save the patch in a file (say "ob-scheme.patch") in the top level directory of your org-mode tree (the one that includes the lisp/ subdirectory), cd to that directory and (assuming you have the "patch" executable on your system), say patch -p 1 < ob-scheme.patch Alternatively, just edit .../lisp/ob-scheme.el, find the line that says (read result))))) (line 175 in my version) and replace the "(read result)" with just "result" - leave the rest of the parens alone. Nick