Nicolas Goaziou <n.goaz...@gmail.com> writes: > Hello, > > Bernt Hansen <be...@norang.ca> writes: > >> Nicolas Goaziou <n.goaz...@gmail.com> writes: >> >>> Hello, >>> >>> Bernt Hansen <be...@norang.ca> writes: >>>> >>>> I found the following filling bug with alphabetical lists. >>>> >>>> I have >>>> >>>> (setq org-alphabetical-lists t) >>> >>> This is now `org-list-allow-alphabetical'. I think you need to reload >>> Org when this variable is changed. >> >> Thanks, I wasn't aware of this rename but it is already set to t here. >> I'll rename the variable in my .emacs. >> >> Do you get the same filling behaviour as me? > > Not anymore after I reload Org.
Thanks Nicolas, My problem was I had org-alphabetical-lists defined _after_ the requires for the exporter back ends in my .emacs so this didn't work for me. Putting it before --8<---------------cut here---------------start------------->8--- ;; Explicitly load required exporters (require 'ox-html) (require 'ox-latex) (require 'ox-ascii) --8<---------------cut here---------------end--------------->8--- and restarting Emacs fixed it for me. Regards, Bernt