Re: [O] Concatenating header args

2018-03-08 Thread Michael Welle
Hello, Michael Welle writes: > Hm, the property values can be functions that get evaluated to get the > actual property values, can't it? I'm not sure though if something like > :flags (get-em "flags" '("-more" "-values")) is so much nicer to write. > Maybe it is, esp. if you want to change the b

Re: [O] Concatenating header args

2018-03-06 Thread Michael Welle
Hello, John Kitchin writes: > I am pretty sure this isn't possible. The headers get overridden by the > most local settings. There isn't a way to concatenate them. In some cases > there isn't a way to figure out what you want, e.g. if a heading property > said ":tangle no" and your header said "

Re: [O] Concatenating header args

2018-03-06 Thread John Kitchin
I am pretty sure this isn't possible. The headers get overridden by the most local settings. There isn't a way to concatenate them. In some cases there isn't a way to figure out what you want, e.g. if a heading property said ":tangle no" and your header said ":tangle yes" it would not make sense to

[O] Concatenating header args

2018-03-06 Thread Michael Welle
Hello, how can I concatenate header args? Let's assume I have an Org structure like follows: * foo :PROPERTIES: :header-args: :flags -Wall :END: ** bar #+begin_src C :flags -lm #+end_src Now I want the code to be compiled with -Wall _and_ -lm. Regards hmw