From mboxrd@z Thu Jan 1 00:00:00 1970 From: stardiviner Subject: [SOLVED] Re: babel header argument :var is not expanded when tangling Date: Thu, 28 Dec 2017 21:43:56 +0800 Message-ID: <95f6e17c-d8e4-a1e6-0e54-6222eeaf5a3b@gmail.com> References: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="------------636C545B3C7E4E72BC63F5B2" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eUYTf-00085M-2b for emacs-orgmode@gnu.org; Thu, 28 Dec 2017 08:44:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eUYTb-0005GS-2u for emacs-orgmode@gnu.org; Thu, 28 Dec 2017 08:44:07 -0500 Received: from mail-pg0-x22d.google.com ([2607:f8b0:400e:c05::22d]:34865) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eUYTa-0005G7-QT for emacs-orgmode@gnu.org; Thu, 28 Dec 2017 08:44:03 -0500 Received: by mail-pg0-x22d.google.com with SMTP id q20so19910085pgv.2 for ; Thu, 28 Dec 2017 05:44:02 -0800 (PST) In-Reply-To: Content-Language: en-US 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: Grant Rettke Cc: Org-mode This is a multi-part message in MIME format. --------------636C545B3C7E4E72BC63F5B2 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit tangles to (let ((x (quote "hi"))) (message x)) This is what I want. Problem solved. On 12/28/2017 09:20 AM, Grant Rettke wrote: > They work differently. Try this example: > > #+BEGIN_SRC emacs-lisp :var x="hi" > (message x) > #+END_SRC > > tangles to > > (let ((x (quote "hi"))) > (message x)) > > but this > > #+NAME: x > #+BEGIN_SRC emacs-lisp > "hi" > #+END_SRC > > #+BEGIN_SRC emacs-lisp > (message «x») > #+END_SRC > > tangles to this > > (message "hi" > > > Sincerely, > > Grant Rettke > > On Mon, Dec 25, 2017 at 6:45 AM, numbchild@gmail.com > > wrote: > > > I see. I will use noweb style for now. > But should tangle expand :var variables when tangling? I think > this is the correct behaviour. > > [stardiviner]                 GPG key ID: 47C32433 > IRC(freeenode): stardiviner Twitter:  @numbchild > Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433 > Blog: http://stardiviner.github.io/ > > On Sun, Dec 24, 2017 at 11:40 PM, Grant Rettke > > wrote: > > > Here is a quick test: > > > > * Test tangle will auto expand and substitute :var > > > > #+begin_src js :tangle kk.js > > console.log("hello, world!"); > > #+end_src > > > > #+begin_src js :var name="chris" :tangle require-kk.js > > // require("kk.js"); > > console.log("Hi, ", name); > > #+end_src > > > > #+RESULTS: > > : Hi,  chris > > > > #+NAME: check whether tangle expand and substitute :var > > #+begin_src shell > > cat require-kk.js > > #+end_src > > > > #+RESULTS: check whether tangle expand and substitute :var > > : var name="chris"; > > : console.log("Hi, ", name); > > > > The upper result should be: ~console.log("Hi, ", "chris");~. > > Here are your two source blocks. They each do literate > programming, > one with Variable style and the other with Noweb style. When you > evaluate them you get an identical result. When you tangle > them you > get two different pieces of code, that generate the same > result. You > can peek at what the tangled code will look like by calling > org-babel-expand-src-block inside the source block. That is how it > will look in the tangled file. I think that want Noweb style. > > When I use the Variable approach like this > > #+begin_src js :var name="chris" :tangle kk.js > console.log("Hi, ", name); > #+end_src > > I get this in the tangled output file > > var name="chris"; > console.log("Hi, ", name); > > When I use the the Noweb approach like this > > #+NAME: name > #+BEGIN_SRC emacs-lisp > chris > #+END_SRC > > #+NAME: > org_gcr_2017-12-23_mara_3D887FDD-163D-4BE1-80E8-464BF29DABEA > #+BEGIN_SRC js :tangle noweb-kk.js :comments no > console.log("Hi, ", "«name»"); > #+END_SRC > > I get this in the tangled  output file > > console.log("Hi, ", "chris"); > > WDYT? > > > --------------636C545B3C7E4E72BC63F5B2 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 8bit
tangles to 

(let ((x (quote "hi")))
(message x))

This is what I want. Problem solved.

On 12/28/2017 09:20 AM, Grant Rettke wrote:
They work differently. Try this example:

#+BEGIN_SRC emacs-lisp :var x="hi"
(message x)
#+END_SRC

tangles to 

(let ((x (quote "hi")))
(message x))

but this

#+NAME: x
#+BEGIN_SRC emacs-lisp
"hi"
#+END_SRC

#+BEGIN_SRC emacs-lisp
(message «x»)
#+END_SRC

tangles to this

(message "hi"


Sincerely,

Grant Rettke

On Mon, Dec 25, 2017 at 6:45 AM, numbchild@gmail.com <numbchild@gmail.com> wrote:

I see. I will use noweb style for now.
But should tangle expand :var variables when tangling? I think this is the correct behaviour.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

On Sun, Dec 24, 2017 at 11:40 PM, Grant Rettke <gcr@wisdomandwonder.com> wrote:
> Here is a quick test:
>
> * Test tangle will auto expand and substitute :var
>
> #+begin_src js :tangle kk.js
> console.log("hello, world!");
> #+end_src
>
> #+begin_src js :var name="chris" :tangle require-kk.js
> // require("kk.js");
> console.log("Hi, ", name);
> #+end_src
>
> #+RESULTS:
> : Hi,  chris
>
> #+NAME: check whether tangle expand and substitute :var
> #+begin_src shell
> cat require-kk.js
> #+end_src
>
> #+RESULTS: check whether tangle expand and substitute :var
> : var name="chris";
> : console.log("Hi, ", name);
>
> The upper result should be: ~console.log("Hi, ", "chris");~.

Here are your two source blocks. They each do literate programming,
one with Variable style and the other with Noweb style. When you
evaluate them you get an identical result. When you tangle them you
get two different pieces of code, that generate the same result. You
can peek at what the tangled code will look like by calling
org-babel-expand-src-block inside the source block. That is how it
will look in the tangled file. I think that want Noweb style.

When I use the Variable approach like this

#+begin_src js :var name="chris" :tangle kk.js
console.log("Hi, ", name);
#+end_src

I get this in the tangled output file

var name="chris";
console.log("Hi, ", name);

When I use the the Noweb approach like this

#+NAME: name
#+BEGIN_SRC emacs-lisp
chris
#+END_SRC

#+NAME: org_gcr_2017-12-23_mara_3D887FDD-163D-4BE1-80E8-464BF29DABEA
#+BEGIN_SRC js :tangle noweb-kk.js :comments no
console.log("Hi, ", "«name»");
#+END_SRC

I get this in the tangled  output file

console.log("Hi, ", "chris");

WDYT?



--------------636C545B3C7E4E72BC63F5B2--