From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Export issues Date: Mon, 02 Dec 2013 21:54:28 +0530 Message-ID: <87y543jk5f.fsf@gmail.com> References: <87fvqb6x8v.fsf@wall.flintfam.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34932) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnWIh-00040f-6m for emacs-orgmode@gnu.org; Mon, 02 Dec 2013 11:24:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VnWIb-0005Qq-H2 for emacs-orgmode@gnu.org; Mon, 02 Dec 2013 11:24:47 -0500 Received: from plane.gmane.org ([80.91.229.3]:37437) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnWIb-0005Qe-9f for emacs-orgmode@gnu.org; Mon, 02 Dec 2013 11:24:41 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VnWIZ-0000PB-T5 for emacs-orgmode@gnu.org; Mon, 02 Dec 2013 17:24:39 +0100 Received: from 115.242.243.232 ([115.242.243.232]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 02 Dec 2013 17:24:39 +0100 Received: from kjambunathan by 115.242.243.232 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 02 Dec 2013 17:24:39 +0100 In-Reply-To: <87fvqb6x8v.fsf@wall.flintfam.org> (Sam Flint's message of "Mon, 02 Dec 2013 10:20:00 -0600") 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 Cc: Org-Mode M-x locate-library org-loaddefs M-x locate-library ox M-x org-version M-x list-load-path-shadows (and check for org.el and ox.el) and output. All those commands will tell you that something is wrong in your setup. Sam Flint writes: > When I go to export a document to pdf, using C-c C-e, I get an error: > Symbol's function definition is void: org-export-dispatch > This diff should fix it: > diff --git a/lisp/org.el b/lisp/org.el > index c0c51c4..888478a 100644 > --- a/lisp/org.el > +++ b/lisp/org.el > @@ -19231,7 +19231,7 @@ boundaries." > (org-defkey org-mode-map "\C-c\C-a" 'org-attach) > (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays) > (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger) > -(org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch) > +(org-defkey org-mode-map "\C-c\C-e" 'org-export) > (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section) > (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize) > (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action) > > Thanks