From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Org-jekyll - org-publish-initialize-files-alist Date: Wed, 30 Jun 2010 13:45:57 +0200 Message-ID: <87bpas7ngq.fsf@gmx.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=38073 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTvjj-0005eY-Bt for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 07:45:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTvji-0007Q7-0O for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 07:45:51 -0400 Received: from mail.gmx.net ([213.165.64.20]:59234) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OTvjh-0007Pg-JA for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 07:45:49 -0400 In-Reply-To: (Nathan Neff's message of "Tue, 29 Jun 2010 17:45:39 -0500") 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: Nathan Neff Cc: emacs-orgmode Nathan Neff writes: > Some time ago, I set up a blog using org-jekyll. I recently tried > to publish my blog, but when I run: > > org-jekyll-export-blog > > I get the message: Symbol's function definition is void: > org-publish-initialize-files-alist > > I grepped for this function, and noticed that it is now defined in > org-protocol.el > using (declare-function org-publish-initilialize-files-alist "org-publish"), > whereas before, the function was declared in org-publish.el > > Can anyone help with this problem? > > I tried putting this in my emacs, but it didn't work: > (require 'org-protocol.el) > (require 'org-publish) > (require 'org-jekyll) > > Thanks, > --Nate Nathan, I cannot find a file named org-jekyll.el or similar. But I guess `org-publish-initialize-files-alist' is just called to find a project the current files belongs to. If that is the case, you simply remove the call to that function and use (let ((project (org-publish-get-project-from-filename buffer-file-name))) .... If you encounter any problems, I'll be glad to help. Sebastian