Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-18 Thread Berry, Charles
> On Dec 18, 2017, at 9:28 AM, numbch...@gmail.com wrote: > > Hope someone can help here. > OK. I think I have it. `org-babel-params-from-properties' uses `org-babel-current-src-block' to figure out where to look for properties. And o-b-c-s-b-l is let bound in `org-babel-noweb-expand-referen

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-18 Thread numbch...@gmail.com
You're right, I searched this function through source code and dived into them. Did not found any obvious places which might cause this issue neither. Hope someone can help here. [stardiviner] GPG key ID: 47C32433 IRC(freeenode): stardiviner Twitter: @numbchil

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-18 Thread Berry, Charles
> On Dec 17, 2017, at 8:28 PM, stardiviner wrote: > > I can't find `org-babel-noweb-ref-resolve` in any of org-mode `master` branch > source code. Sorry. I was off my medication when I wrote that. I suffer from CDD (Caffeine Deficit Disorder). Now I am back on my meds and can say that I sho

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-17 Thread stardiviner
I can't find `org-babel-noweb-ref-resolve` in any of org-mode `master` branch source code. I use `counsel-git-grep` searched through the repository. Not found. Can you point out where is it? On 12/18/2017 12:12 PM, Berry, Charles wrote: On Dec 17, 2017, at 6:08 PM, stardiviner wrote: The

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-17 Thread Berry, Charles
> On Dec 17, 2017, at 6:08 PM, stardiviner wrote: > > The example I original copied from is Emacs org-mode info. > So I rewrite a hand typing content again: > ```org > * Test > > #+begin_src shell :tangle yes :noweb yes :shebang #!/bin/sh > <> > #+end_src > > ** the mount point of the fullest

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-17 Thread stardiviner
The example I original copied from is Emacs org-mode info. So I rewrite a hand typing content again: ```org * Test #+begin_src shell :tangle yes :noweb yes :shebang #!/bin/sh <> #+end_src ** the mount point of the fullest disk :PROPERTIES: :header-args: :noweb-ref fullest-disk :END: *** query a

Re: [O] header argument :noweb-ref seems can't be resolved

2017-12-17 Thread Berry, Charles
> On Dec 17, 2017, at 6:58 AM, stardiviner wrote: > > I have the following org-mode file content: > > ```org > > #+begin_src shell :tangle yes :noweb yes :shebang #!/bin/sh > <> > #+end_src > > ** the mount point of the fullest disk > :PROPERTIES: > :header-args: :noweb-ref fullest-disk

[O] header argument :noweb-ref seems can't be resolved

2017-12-17 Thread stardiviner
I have the following org-mode file content: ```org #+begin_src shell :tangle yes :noweb yes :shebang #!/bin/sh <> #+end_src ** the mount point of the fullest disk   :PROPERTIES:   :header-args: :noweb-ref fullest-disk   :END: *** query all mounted disks #+begin_src shell   df \ #+end_src ***