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, but it generates compilation warnings. Could you look

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 look into it? Thank you. Regards, -- Nicolas Goazio

Re: [O] Scheme output results

2017-09-05 Thread Neil Jerram
he 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 writes: I cannot, I'm not the maintainer. I'

Re: [O] Scheme output results

2017-08-31 Thread Neil Jerram
e: [O] Scheme output results 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 change

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 need another copyright as

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 > 1990), and it's possible tha

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) #+END_SRC #+RESULTS: : "

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: : "a\nb\nc\n" > > As compa

[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 :res