From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman" Newsgroups: gmane.emacs.devel Subject: Byte compiler say an autoloaded function "might not be defined at runtime", why? Date: Sun, 28 Dec 2008 17:01:31 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1230480109 24350 80.91.229.12 (28 Dec 2008 16:01:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 28 Dec 2008 16:01:49 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 28 17:02:56 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LGy6Q-0002A4-8y for ged-emacs-devel@m.gmane.org; Sun, 28 Dec 2008 17:02:54 +0100 Original-Received: from localhost ([127.0.0.1]:37943 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LGy5C-00076j-Nt for ged-emacs-devel@m.gmane.org; Sun, 28 Dec 2008 11:01:38 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LGy58-00076L-Gj for emacs-devel@gnu.org; Sun, 28 Dec 2008 11:01:34 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LGy58-000766-1p for emacs-devel@gnu.org; Sun, 28 Dec 2008 11:01:34 -0500 Original-Received: from [199.232.76.173] (port=36464 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LGy57-000761-QA for emacs-devel@gnu.org; Sun, 28 Dec 2008 11:01:33 -0500 Original-Received: from fg-out-1718.google.com ([72.14.220.152]:17826) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LGy57-000143-9r for emacs-devel@gnu.org; Sun, 28 Dec 2008 11:01:33 -0500 Original-Received: by fg-out-1718.google.com with SMTP id l26so1734360fgb.30 for ; Sun, 28 Dec 2008 08:01:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=e/PSc/RroUhLjJCAUYgEjMmg6L+aH96j2prkRcOdcwo=; b=WRwCuNiumzN9KEDDSPNcDUePgLWJEjkkRRP1h/cRIhIjKCJkk8TWnOBsKqFtxoOrjg q335kU/5wOqw2rdR78ldkwuIY/Vyw+BdWspznQE8ittjxO95M01Xp1N4nDudj51Yvgf4 3ABnAVP3alheB+CAWWfO6c3BY8A50+hGzEyhg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=KBrLpJpunW3HLK331E36IYBf3UKHNIdhx5IiL9l44lsnU6l9m4WxkV7677fK2Pqkvm Iawm74fPFhjJaihwVl2k1UgIu0lFRnvTN83sk8opOUMk5ZdI827eQsEt4SkS76Em13Cm YaOdunrm762PKEVrDfn7Lz9+GFYd77QpdTouM= Original-Received: by 10.86.23.18 with SMTP id 18mr7554248fgw.6.1230480091366; Sun, 28 Dec 2008 08:01:31 -0800 (PST) Original-Received: by 10.86.35.9 with HTTP; Sun, 28 Dec 2008 08:01:31 -0800 (PST) Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:107334 Archived-At: When I byte compile a file with an autoload ;;;###autoload (define-minor-mode nxml-where-mode the byte compiler says nxml-where.el:691:1:Warning: the following functions might not be defined at runtime: nxml-where-mode I think it wants to tell me something, but what? Does it want me to do something?