emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric Schulte <schulte.eric@gmail.com>
To: Thorsten Jolitz <tjolitz@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Passing values by reference to src-blocks
Date: Tue, 24 Jun 2014 23:01:25 -0400	[thread overview]
Message-ID: <87vbrpbsii.fsf@gmail.com> (raw)
In-Reply-To: 87wqc5srtf.fsf@gmail.com

[-- Attachment #1: Type: text/plain, Size: 277 bytes --]

Thorsten Jolitz <tjolitz@gmail.com> writes:

> Hi List, 
>
> this does not work, although I would think it should (at least if there
> is no typo or so):
>

I think everything is doing what it is supposed to from an Org-mode
perspective, see below (with different functions).


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: example.org --]
[-- Type: text/x-org, Size: 380 bytes --]

#+name: plus-foo
#+header: :var buf-file=(buffer-file-name)
#+begin_src emacs-lisp
(concat buf-file "+foo")
#+end_src

#+RESULTS: plus-foo
: /tmp/example.org+foo

#+name: project-name
#+header: :exports none
#+header: :var root-dir=plus-foo(buf-file=(buffer-file-name))
#+begin_src emacs-lisp
(concat root-dir "+bar")
#+end_src

#+RESULTS: project-name
: /tmp/example.org+foo+bar

[-- Attachment #3: Type: text/plain, Size: 1165 bytes --]


>
> ,----
> | #+name: project-root
> | #+header: :var buf-file=(buffer-file-name)
> | #+begin_src emacs-lisp
> | (file-name-directory
> |  (directory-file-name
> |   (file-name-directory buf-file)))
> | #+end_src
> `----
>
> #+results: project-root
> : /home/tj/News/drafts/
>
> ,----
> | #+name: project-name
> | #+header: :exports none
> | #+header: :var root-dir=project-root(buf-file=(buffer-file-name))
> | #+begin_src emacs-lisp
> |   (mapconcat
> |    'capitalize
> |    (split-string
> |     (file-name-nondirectory root-dir)
> |     "-" 'OMIT-NULLS)
> |    " ")
> | #+end_src
> `----
>
> #+results: project-name
>
> Wrong usage of :var or limitations of header arguments?

This is to be expected.  The two blocks above compose to something like

    #+begin_src emacs-lisp
      (file-name-nondirectory
       (file-name-directory
        (directory-file-name
         (file-name-directory
          (buffer-file-name)))))
    #+end_src

Calling `file-name-nondirectory' on the results of `file-name-directory'
seems like it should give you an empty string.

Best,

-- 
Eric Schulte
https://cs.unm.edu/~eschulte
PGP: 0x614CA05D (see https://u.fsf.org/yw)

  reply	other threads:[~2014-06-25  3:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-25  1:26 Passing values by reference to src-blocks Thorsten Jolitz
2014-06-25  3:01 ` Eric Schulte [this message]
2014-06-25  3:38   ` Thorsten Jolitz
2014-06-25  3:12 ` Thorsten Jolitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87vbrpbsii.fsf@gmail.com \
    --to=schulte.eric@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=tjolitz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).