From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: org-export-generic.el patch to make it load with "require" Date: Wed, 03 Feb 2010 16:27:54 +0000 Message-ID: <87fx5i473p.fsf@it.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nci6p-0005SF-1D for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 11:29:43 -0500 Received: from [199.232.76.173] (port=51458 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nci6o-0005S2-Fv for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 11:29:42 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nci6n-00035s-QM for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 11:29:42 -0500 Received: from lo.gmane.org ([80.91.229.12]:52272) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nci6n-00035m-FD for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 11:29:41 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Nci6l-0006U7-3V for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 17:29:39 +0100 Received: from sp02.packetderm.com ([67.159.44.184]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Feb 2010 17:29:39 +0100 Received: from news by sp02.packetderm.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Feb 2010 17:29:39 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org In the org-export-generic.el file the library is provided as org-generic instead of org-export-generic. Not sure what the reason for this is, but I cannot load it with (require 'org-generic). This patch changes (provide 'org-generic) to (provide 'org-export-generic) so I can load it normally. *** ~/.emacs.d/org-export-generic.el 2010-02-03 15:47:30.000000000 +0000 --- ~/.emacs.d/org-mode/contrib/lisp/org-export-generic.el 2010-02-03 15:46:45.000000000 +0000 *************** *** 1237,1242 **** (and vl (setcar vl nil)) vl)) ! (provide 'org-export-generic) ;;; org-export-generic.el ends here --- 1237,1242 ---- (and vl (setcar vl nil)) vl)) ! (provide 'org-generic) ;;; org-export-generic.el ends here -- aleblanc