Re: [O] Scheme output results

2017-09-07 Thread Nicolas Goaziou
Hello, Neil Jerram writes: > I believe the attached patch fixes those problems. Applied. Thank you! Regards, -- Nicolas Goaziou

Re: [O] Scheme output results

2017-09-07 Thread Neil Jerram
Hi Nicolas, On 05/09/17 22:49, Nicolas Goaziou wrote: Hello, Neil Jerram writes: Hi Bastien & Nicolas, I've been told by "Theodore Teah via RT " that my copyright assignment is in place now. Great! I tried to build Org with your patch,

Re: [O] Scheme output results

2017-09-05 Thread Nicolas Goaziou
Hello, Neil Jerram writes: > Hi Bastien & Nicolas, > > I've been told by "Theodore Teah via RT " > that my copyright assignment is in place now. Great! I tried to build Org with your patch, but it generates compilation warnings. Could you

Re: [O] Scheme output results

2017-09-05 Thread Neil Jerram
ick off sorting out the additional assignment. Regards - Neil Original Message From: Bastien Guerry Sent: Sunday, 27 August 2017 13:07 To: Nicolas Goaziou Cc: Neil Jerram; emacs-orgmode@gnu.org Subject: Re: [O] Scheme output results Hi Neil, Nicolas Goaziou <m...@nicolasgoaziou.fr&g

Re: [O] Scheme output results

2017-08-31 Thread Neil Jerram
] Scheme output results Hi Neil, Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > I cannot, I'm not the maintainer. I'm Cc'ing Bastien. I'll apply your > patch as soon as it is sorted out. Thanks for contributing. I’ve found your copyright assignment for GUILE but it does not cover cha

Re: [O] Scheme output results

2017-08-27 Thread Bastien Guerry
Hi Neil, Nicolas Goaziou writes: > I cannot, I'm not the maintainer. I'm Cc'ing Bastien. I'll apply your > patch as soon as it is sorted out. Thanks for contributing. I’ve found your copyright assignment for GUILE but it does not cover changes for GNU Emacs, you would

Re: [O] Scheme output results

2017-08-20 Thread Nicolas Goaziou
Hello, Neil Jerram writes: > With apologies for the slow follow up, attached is a patch that works > well for me. Thank you. > I guess (following any revisions) you will also need assignment > papers. I believe I have these on file for Guile already (since about >

Re: [O] Scheme output results

2017-08-20 Thread Neil Jerram
On 23/07/17 09:52, Nicolas Goaziou wrote: Hello, Neil Jerram writes: I don't think that Scheme output results are correctly handled. Please consider: #+BEGIN_SRC scheme :results output (display "a") (newline) (display "b") (newline) (display "c") (newline) '(a b c)

Re: [O] Scheme output results

2017-07-23 Thread Nicolas Goaziou
Hello, Neil Jerram writes: > I don't think that Scheme output results are correctly handled. Please > consider: > > #+BEGIN_SRC scheme :results output > (display "a") (newline) > (display "b") (newline) > (display "c") (newline) > '(a b c) > #+END_SRC > > > #+RESULTS:

[O] Scheme output results

2017-07-18 Thread Neil Jerram
I don't think that Scheme output results are correctly handled. Please consider: #+BEGIN_SRC scheme :results output (display "a") (newline) (display "b") (newline) (display "c") (newline) '(a b c) #+END_SRC #+RESULTS: : "a\nb\nc\n" As compared with the Elisp equivalent: #+BEGIN_SRC elisp