Re: [O] bug with :wrap when exporting

2013-12-06 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > Yes, it works great on the following example (which includes "direct > printing", in the sense of echoing the #+BEGIN_SRC lines) as well as in > the ":wrap" case. Applied, then. Thank you for your feedback. Regards, -- Nicolas Goaziou

Re: [O] bug with :wrap when exporting

2013-12-06 Thread Alan Schmitt
strom...@nexgo.de writes: > Alan Schmitt writes: >> I tried to do this, and do a "make clean" to make sure old elc files >> would not be picked up, but then export fails with > > You would want to do "make uncompiled" and also "(require 'org-loaddefs)". Thanks a lot, with this I was able to test

Re: [O] bug with :wrap when exporting

2013-12-06 Thread Alan Schmitt
n.goaz...@gmail.com writes: > Hello, > > Alan Schmitt writes: > >> I think I have found a bug with ":wrap" when exporting a block. Consider >> the following org file: >> >> #+name: mywrap >> #+BEGIN_SRC sh :exports none :results raw >> echo "(+ 1 2)" >> #+END_SRC >> >> Exporting with the result a

Re: [O] bug with :wrap when exporting

2013-12-06 Thread Sebastien Vauban
Nick Dokos wrote: > Alan Schmitt writes: >> jsch...@gmail.com writes: >>> Alan Schmitt writes: >>> Off topic question: what does ECM stands for? (I understand it's a small example showing a bug, but I could not find the meaning of the acronym.) >>> >>> Exemple Complet Minimal >>> >>

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Achim Gratz
Alan Schmitt writes: > I tried to do this, and do a "make clean" to make sure old elc files > would not be picked up, but then export fails with You would want to do "make uncompiled" and also "(require 'org-loaddefs)". Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XT

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Nick Dokos
Alan Schmitt writes: > jsch...@gmail.com writes: > >> Alan Schmitt writes: >> >>> Off topic question: what does ECM stands for? (I understand it's a small >>> example showing a bug, but I could not find the meaning of the >>> acronym.) >> >> Exemple Complet Minimal >> >> http://orgmode.org/worg/o

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Alan Schmitt
alan.schm...@polytechnique.org writes: > I'd gladly test it, but I'm not sure how to do it. I understand I need > to switch branch to the maint branch on my git clone of the repository. > But then what is the simplest way to test this different org version > without changing my current installatio

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Alan Schmitt
jsch...@gmail.com writes: > Alan Schmitt writes: > >> Off topic question: what does ECM stands for? (I understand it's a small >> example showing a bug, but I could not find the meaning of the >> acronym.) > > Exemple Complet Minimal > > http://orgmode.org/worg/org-faq.html#ecm Very interesting,

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Josiah Schwab
Alan Schmitt writes: > Off topic question: what does ECM stands for? (I understand it's a small > example showing a bug, but I could not find the meaning of the > acronym.) Exemple Complet Minimal http://orgmode.org/worg/org-faq.html#ecm Best, Josiah

Re: [O] bug with :wrap when exporting

2013-12-05 Thread Alan Schmitt
Hello Nicolas, n.goaz...@gmail.com writes: > The following patch (from maint) fixed the problem shown in the ECM. Off topic question: what does ECM stands for? (I understand it's a small example showing a bug, but I could not find the meaning of the acronym.) > Does it still work in the general

Re: [O] bug with :wrap when exporting

2013-12-04 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > I think I have found a bug with ":wrap" when exporting a block. Consider > the following org file: > > #+name: mywrap > #+BEGIN_SRC sh :exports none :results raw > echo "(+ 1 2)" > #+END_SRC > > Exporting with the result absent: > > #+name: testmywrap > #+call: mywr

[O] bug with :wrap when exporting

2013-12-04 Thread Alan Schmitt
Hello, I think I have found a bug with ":wrap" when exporting a block. Consider the following org file: --8<---cut here---start->8--- #+name: mywrap #+BEGIN_SRC sh :exports none :results raw echo "(+ 1 2)" #+END_SRC Exporting with the result absent: #+name: t