From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: problem compiling latest git Date: Sat, 15 May 2010 12:29:38 +0200 Message-ID: <87vdapo3u5.fsf@gmx.de> References: <20100514210742.GC17490@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from [140.186.70.92] (port=45328 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ODEco-0005gC-Ml for emacs-orgmode@gnu.org; Sat, 15 May 2010 06:29:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ODEcm-0005cj-W4 for emacs-orgmode@gnu.org; Sat, 15 May 2010 06:29:42 -0400 Received: from mail.gmx.net ([213.165.64.20]:46764) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1ODEcm-0005cZ-DJ for emacs-orgmode@gnu.org; Sat, 15 May 2010 06:29:40 -0400 In-Reply-To: <20100514210742.GC17490@gmail.com> (Manuel Amador's message of "Fri, 14 May 2010 14:07:43 -0700") 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: Manuel Amador Cc: emacs-orgmode@gnu.org --=-=-= Manuel Amador writes: > Hi all, > > There seems to be a problem. When compiling org-mode from the latest git > repository, I get the following error: > > In org-publish-get-base-files-1: > org-publish.el:407:13:Warning: reference to free variable `sitemap-requested' > org-publish.el:915:1:Error: Invalid read syntax: "#" > make: *** [lisp/org-publish.elc] Error 1 Hi Manual, thanks for the report! My fault. This patch should fix it: --=-=-= Content-Type: text/x-diff Content-Disposition: inline diff --git a/lisp/org-publish.el b/lisp/org-publish.el index e77b1a0..fefd50d 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.el @@ -352,6 +352,7 @@ This splices all the components into the list." (defvar sitemap-alphabetically) (defvar sitemap-sort-folders) (defvar sitemap-ignore-case) +(defvar sitemap-requested) (defun org-publish-compare-directory-files (a b) "Predicate for `sort', that sorts folders-first/last and eventually alphabetically." --=-=-= Best wishes Sebastian --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--