From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grant Rettke Subject: Re: Error Embedding SQL Source from code block into R Source of Another (noweb) Date: Tue, 30 Sep 2014 13:46:53 -0500 Message-ID: References: <87lhp2x7p9.fsf@air.ben-zion.org> <87mw9hqiv1.fsf@air.ben-zion.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZ2Rs-0004VW-6Z for emacs-orgmode@gnu.org; Tue, 30 Sep 2014 14:46:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XZ2Rr-0002Ma-9X for emacs-orgmode@gnu.org; Tue, 30 Sep 2014 14:46:56 -0400 Received: from mail-oi0-x236.google.com ([2607:f8b0:4003:c06::236]:40079) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZ2Rr-0002MG-1L for emacs-orgmode@gnu.org; Tue, 30 Sep 2014 14:46:55 -0400 Received: by mail-oi0-f54.google.com with SMTP id v63so3011060oia.41 for ; Tue, 30 Sep 2014 11:46:54 -0700 (PDT) In-Reply-To: <87mw9hqiv1.fsf@air.ben-zion.org> 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: Eric Brown Cc: Rainer M Krug , "emacs-orgmode@gnu.org" On Tue, Sep 30, 2014 at 9:32 AM, Eric Brown wrote: > 2) Grant, I tried your code, but there seem to be some missing headers. > Do you have a complete minimal example that exhibits the behavior that > you have demonstrated? Sorry for omitting that key point: =E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2= =9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C= =82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82= =E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82 #+name: msg #+begin_src sql Hello, world. #+end_src #+begin_src R :eval yes print("=C2=ABmsg=C2=BB") #+end_src #+NAME: [1] "Hello, world." #+end_example #+begin_src emacs-lisp (print emacs-version) (print org-version) (print org-babel-default-header-args) (print org-babel-default-inline-header-args) #+end_src #+NAME: #+begin_example "24.3.1" "8.2.7c" ((:eval . "always") (:noweb . "no-export") (:exports . "both") (:results . "output") (:comments . "no") (:session . "none") (:cache . "no") (:hlines . "no") (:tangle . "no")) ((:results . "value replace") (:eval . "always") (:session . "none") (:exports . "results")) #+end_example =E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2= =9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C= =82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82= =E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82=E2=9C=82