From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martyn Jago Subject: [bug] Regression due to relocation of org-export.el Date: Sat, 21 Apr 2012 18:07:57 +0100 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:32869) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLdnC-00066Q-Rs for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 13:08:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SLdn8-0001Rr-Iy for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 13:08:14 -0400 Received: from plane.gmane.org ([80.91.229.3]:56302) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLdn8-0001Rm-CN for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 13:08:10 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SLdn6-0002pL-RE for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 19:08:08 +0200 Received: from 88-96-171-142.dsl.zen.co.uk ([88.96.171.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 21 Apr 2012 19:08:08 +0200 Received: from martyn.jago by 88-96-171-142.dsl.zen.co.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 21 Apr 2012 19:08:08 +0200 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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi There's a small regression in org-export due to removal of EXPERIMENTAL / relocation. Best, Martyn --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Fix-require-path-due-to-removal-of-EXPERIMENTAL.patch Content-Description: Fix require path due to removal of EXPERIMENTAL >From eb3c7717cdd4a4dc1e5f76da4746293ff6f40d17 Mon Sep 17 00:00:00 2001 From: Martyn Jago Date: Sat, 21 Apr 2012 18:02:27 +0100 Subject: [PATCH] Fix require path due to removal of EXPERIMENTAL * contrib/lisp/org-export.el: path relative to org-export.el has changed due to relocation of org-e-publish.el (removal of EXPERIMENTAL) --- contrib/lisp/org-export.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 142b0fa..939a697 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -97,7 +97,7 @@ (require 'org-e-html "./org-e-html.el") (require 'org-e-latex "./org-e-latex.el") (require 'org-e-odt "./org-e-odt.el") -(require 'org-e-publish "../org-e-publish.el") +(require 'org-e-publish "./org-e-publish.el") -- 1.7.3.4 --=-=-=--