Re: [O] using org-babel-trim in org-sbe?

2014-04-18 Thread Bastien
Hi Alan,

Alan Schmitt alan.schm...@polytechnique.org writes:

 #+TBLFM: $2='(org-sbe spending (c (concat \ $1 \)))::$3='(org-sbe 
 spending (c (concat \ (org-babel-trim $1) \)))

You need to swap concat and org-babel-trim like this:

 #+TBLFM: $2='(org-sbe spending (c (concat \ $1 \)))::$3='(org-sbe 
 spending (c (org-babel-trim (concat \ $1 \

Otherwise `org-babel-trim' act upon something that is not a string.

Btw, org-trim is enough here.

HTH,

-- 
 Bastien



Re: [O] using org-babel-trim in org-sbe?

2014-04-18 Thread Alan Schmitt
On 2014-04-18 15:17, Bastien b...@gnu.org writes:

 Hi Alan,

 Alan Schmitt alan.schm...@polytechnique.org writes:

 #+TBLFM: $2='(org-sbe spending (c (concat \ $1 \)))::$3='(org-sbe 
 spending (c (concat \ (org-babel-trim $1) \)))

 You need to swap concat and org-babel-trim like this:

 #+TBLFM: $2='(org-sbe spending (c (concat \ $1 \)))::$3='(org-sbe 
 spending (c (org-babel-trim (concat \ $1 \

 Otherwise `org-babel-trim' act upon something that is not a string.

Ah, thanks, this is good to know.

 Btw, org-trim is enough here.

OK, I've replaced it in other places where I was using it.

Thanks again,

Alan



[O] using org-babel-trim in org-sbe?

2014-04-03 Thread Alan Schmitt
Hello,

I noticed a call to org-sbe failed because there were some extra spaces
present in one argument. I tried to clean them up before calling the
code block, but instead I'm getting literally what I'm writing. Here is
an example:

--8---cut here---start-8---
#+name: spending
#+begin_src sh :var c=bar :results output
echo res:$c:
#+end_src

| Name | Test1   | Test2|
|--+-+--|
| Food | res: Food : | res: (org-babel-trim Food) : |
#+TBLFM: $2='(org-sbe spending (c (concat \ $1 \)))::$3='(org-sbe 
spending (c (concat \ (org-babel-trim $1) \)))
--8---cut here---end---8---

The Test1 column shows the extra space, and the Test2 column my attempt
to clean things up.

I suppose this behavior is due to the fact that org-sbe is a macro, but
I don't know how tell it to evaluate its arguments and not pass them
literally.

Any suggestion on how to proceed?

Thanks,

Alan