Re: [Orgmode] org-export-generic.el patch to make it load with "require"

2010-02-03 Thread Carsten Dominik
Hi, I have applied you patch, but also kept the old provide statement, to make sure that no old code will break. Thanks. - Carsten On Feb 3, 2010, at 5:27 PM, > wrote: In the org-export-generic.el file the library is provided as org- generic instead of org-export-generic. Not sure what th

Re: [Orgmode] org-export-generic.el patch to make it load with "require"

2010-02-03 Thread Nick Dokos
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 co

[Orgmode] org-export-generic.el patch to make it load with "require"

2010-02-03 Thread news
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.