From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-export-generic.el patch to make it load with "require" Date: Wed, 03 Feb 2010 12:03:29 -0500 Message-ID: <12531.1265216609@gamaville.dokosmarshall.org> References: <87fx5i473p.fsf@it.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NcifF-0007Ma-7q for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 12:05:17 -0500 Received: from [199.232.76.173] (port=44178 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NcifE-0007MM-S5 for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 12:05:16 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NcifD-0007Se-AA for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 12:05:16 -0500 Received: from vms173003pub.verizon.net ([206.46.173.3]:33149) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NcifB-0007Ci-Pt for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 12:05:14 -0500 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173003.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0KX900028ZDTT181@vms173003.mailsrvcs.net> for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 11:03:30 -0600 (CST) In-reply-to: Message from of "Wed, 03 Feb 2010 16:27:54 GMT." <87fx5i473p.fsf@it.com> 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: news@aleblanc.cotse.net Cc: emacs-orgmode@gnu.org wrote: > 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). > Having the provided symbol have the same print-name as the file name is a common convention, but you *can* do what you want with (require 'org-generic "org-export-generic") although your patch is probably the right long term solution. HTH, Nick