From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Org-mode version 5.08 Date: Wed, 5 Sep 2007 12:29:33 +0200 Message-ID: References: <56cab4000393337c90c5c0d101aa799e@gmail.com> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ISs8k-0007wa-2Z for emacs-orgmode@gnu.org; Wed, 05 Sep 2007 06:29:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ISs8i-0007tV-92 for emacs-orgmode@gnu.org; Wed, 05 Sep 2007 06:29:41 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ISs8h-0007sm-OP for emacs-orgmode@gnu.org; Wed, 05 Sep 2007 06:29:39 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ISs8g-0004XA-3Q for emacs-orgmode@gnu.org; Wed, 05 Sep 2007 06:29:38 -0400 In-Reply-To: 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: Leo Cc: emacs-orgmode@gnu.org On Sep 5, 2007, at 11:52, Leo wrote: > On 2007-09-05 09:36 +0100, Carsten Dominik wrote: >> Org-mode version 5.08 is available at >> >> http://orgmode.org > > Compiler warnings are getting longer and longer. See: > > ,---- > | In org-columns-eval: > | org.el:14725:8:Warning: `next-line' used from Lisp code > | That command is designed for interactive use only > `---- This is necessary, forward-line does not do the right thing. > > ,---- > | In org-publish-org-to-html: > | org-publish.el:461:8:Warning: function `org-publish-org-to-html' > defined > | multiple times in this file > `---- Easily cleaned up. David? > > ,---- > | In org-mouse-show-context-menu: > | org-mouse.el:194:24:Warning: reference to free variable > | `org-mouse-context-menu-function' [...] org-mouse.el needs to (require 'org). Piotr? > > | > | In org-mouse-do-remotely: > | org-mouse.el:972:35:Warning: reference to free variable `_cmd' > `---- This is a variable that is dynamically scoped from a macro in Org-mode. Piotr, you can get rid of this warning with (note that there is no value!) (defvar _cmd) ; from org.el - Carsten