From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Filling bug with alphabetical lists Date: Thu, 25 Apr 2013 22:53:30 -0400 Message-ID: <87bo92ovdh.fsf@norang.ca> References: <87obd4q7zg.fsf@norang.ca> <87vc7b8wd1.fsf@gmail.com> <87fvyfr3bn.fsf@norang.ca> <87r4hz89hp.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:50816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVYn8-0002KT-8h for emacs-orgmode@gnu.org; Thu, 25 Apr 2013 22:53:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVYn7-00011j-7J for emacs-orgmode@gnu.org; Thu, 25 Apr 2013 22:53:42 -0400 Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:14639 helo=mho-01-ewr.mailhop.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVYn7-00010P-3O for emacs-orgmode@gnu.org; Thu, 25 Apr 2013 22:53:41 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nicolas Goaziou Cc: emacs-orgmode@gnu.org Nicolas Goaziou writes: > Hello, > > Bernt Hansen writes: > >> Nicolas Goaziou writes: >> >>> Hello, >>> >>> Bernt Hansen 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