From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: Exporter dispatcher bug? Date: Thu, 25 Sep 2014 08:36:49 -0700 Message-ID: References: <5422FB29.3080500@verizon.net> <8761gczvkw.fsf@uw.edu> <5423297B.9080301@verizon.net> <87mw9o4ou5.fsf@uw.edu> <54241C08.20806@verizon.net> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXB6O-0000j7-7T for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 11:37:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXB6I-0006iq-2p for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 11:37:04 -0400 Received: from iport-acv2-out.ucsd.edu ([132.239.0.174]:31282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXB6H-0006hA-Qn for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 11:36:58 -0400 In-Reply-To: <54241C08.20806@verizon.net> 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: Charles Millar Cc: emacs-orgmode@gnu.org, Brady Trainor On Thu, 25 Sep 2014, Charles Millar wrote: > Brady and Charles and all, > > Thanks for your suggestions. > > The following is rather long-winded. > > Charles Berry wrote: >> Brady Trainor uw.edu> writes: >> >>> >>> Charles Millar verizon.net> writes: >>> >>>> Brady Trainor wrote: >>>>> Charles Millar verizon.net> writes: >>>>> >>>>>> Today, using C-c C-e, the dispatcher shows only the LaTeX and >>>>>> Publisher options. >>>>>> [snip] >> I think you want to check >> >> (mapcar 'org-export-backend-name org-export--registered-backends) >> >> to see what backends are actually available to the export dispatcher. > On my Linux learning machine (Jessie, same org version) the dispatcher is > fine. However there appears to be no (mapcar 'org-export-backend-name > org-export--registered-backends) > What I meant was: You should eval (mapcar 'org-export-backend-name org-export--registered-backends) to see what backends are available to the dispatcher. If you copy that line into an emacs buffer (like *scratch*), put point after it and type C-x C-e, you will see the backend names listed in the minibuffer and the *Messages* buffer. This list *ought to* correspond to `org-export-backends'. If it does not there is a hiccup or unusual customization in your setup - more digging might be needed. If it does correspond, then use the customize menu to reset `org-export-backends' to your desired value and save the change as you need it. HTH, Chuck