Lawrence Bottorff <borg...@gmail.com> 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