Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-08 Thread Adam Porter
"Loris Bennett" writes: >> I and others have asked a few times why the packages are structured in >> this way, but nobody seems able to provide the rationale. Personally, I >> think we should just have an org package and an org-contrib package >> which depends on the

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-05 Thread Loris Bennett
Tim Cross writes: > Loris Bennett writes: > >> Adam Porter writes: >> >>> "Loris Bennett" writes: >>> I didn't know about this function either. Is it correct that the org parts of 'org-plus-contrib' shadow the

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-05 Thread Tim Cross
This is an artefact of having the two packages. The package system does not support alternatives. I have posted a few times regarding this. I don't think it does any harm, but many people will find they have both org-plus-contrib as well as org installed. The main draw back is that updates can

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-05 Thread Loris Bennett
Adam Porter writes: > "Loris Bennett" writes: > >> I didn't know about this function either. Is it correct that the org >> parts of 'org-plus-contrib' shadow the whole of 'org', e.g. >> >> ... >>

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-04 Thread Adam Porter
"Loris Bennett" writes: > I didn't know about this function either. Is it correct that the org > parts of 'org-plus-contrib' shadow the whole of 'org', e.g. > > ... > /home/loris/.emacs.d/elpa/org-plus-contrib-20170828/org hides >

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-04 Thread Loris Bennett
Kaushal Modi writes: > On Fri, Sep 1, 2017, 10:49 PM Adam Porter wrote: > > Kaushal Modi writes: > > > M-x list-load-path-shadows will also help. Pay attention to shadows on org > packages. > > Wow, I did not know about

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-01 Thread Adam Porter
Wow, thanks, that is comprehensive. :)

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-01 Thread Kaushal Modi
On Fri, Sep 1, 2017, 10:49 PM Adam Porter wrote: > Kaushal Modi writes: > > > M-x list-load-path-shadows will also help. Pay attention to shadows on > org packages. > > Wow, I did not know about that command. I have a bit of cleaning-up to > do. :)

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-09-01 Thread Adam Porter
Kaushal Modi writes: > M-x list-load-path-shadows will also help. Pay attention to shadows on org > packages. Wow, I did not know about that command. I have a bit of cleaning-up to do. :)

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-21 Thread Sam Halliday
By running this (cl-delete-if (lambda (el) (string-match-p "/usr/share/.*org" el)) load-path) I'm able to hide org and now the org-plus-contrib loads up, yay! Thanks for the hints. On 21 August 2017 at 01:40, Kaushal Modi wrote: > On Sun, Aug 20, 2017, 4:25 PM

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-20 Thread Kaushal Modi
On Sun, Aug 20, 2017, 4:25 PM Nicolas Goaziou wrote: > > > then I can try to investigate what could be causing the Emacs org > > to load. I cannot see how that is possible since it is not even > > available on the elisp path anymore. > > > > Is there a way to check which

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-20 Thread Nicolas Goaziou
Sam Halliday writes: > If you are confirming that org is definitely compatible with my .org > file It is, although I didn't check the details of the output. It didn't error in the process anyway. > then I can try to investigate what could be causing the Emacs org > to

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-20 Thread Sam Halliday
On 20 August 2017 at 16:07, Nicolas Goaziou wrote: > Hello, > > Sam Halliday writes: > >> To ensure that the Emacs-installed org-mode is not interfering, I >> added this to my init >> >> (cl-delete-if >>(lambda (el) (string-match-p ".*org"

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-20 Thread Nicolas Goaziou
Hello, Sam Halliday writes: > To ensure that the Emacs-installed org-mode is not interfering, I > added this to my init > > (cl-delete-if >(lambda (el) (string-match-p ".*org" el)) >load-path) > > and I can confirm that emacs/org is not in my load-path. > >

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-20 Thread Sam Halliday
Hi Nicholas, To ensure that the Emacs-installed org-mode is not interfering, I added this to my init (cl-delete-if (lambda (el) (string-match-p ".*org" el)) load-path) and I can confirm that emacs/org is not in my load-path. However, the backtrace still occurs. For a much larger file

Re: [O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-19 Thread Nicolas Goaziou
Hello, Sam Halliday writes: > Regression in org-plus-contrib from http://orgmode.org/elpa/ vs version > distributed with Emacs 25.2.1 > > Running > > M-x md-org-export-to-markdown > > on a simple org file such as the following > >

[O] Bug: markdown export errors on headers [9.0.9 (9.0.9-82-gb862c2-elpaplus @ /home/fommil/.emacs.d/elpa/org-plus-contrib-20170814/)]

2017-08-19 Thread Sam Halliday
Regression in org-plus-contrib from http://orgmode.org/elpa/ vs version distributed with Emacs 25.2.1 Running M-x md-org-export-to-markdown on a simple org file such as the following == #+TITLE: Functional Programming in Scala for Mortals