From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Sun Yijiang Newsgroups: gmane.emacs.bugs Subject: Byte-compile problem Date: Thu, 11 Nov 2004 19:30:24 +0800 Message-ID: <5065e290041111033052224445@mail.gmail.com> Reply-To: Sun Yijiang NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1100172661 29358 80.91.229.6 (11 Nov 2004 11:31:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 11 Nov 2004 11:31:01 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Nov 11 12:30:56 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CSDAF-00030T-00 for ; Thu, 11 Nov 2004 12:30:56 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSDIk-0000my-BO for geb-bug-gnu-emacs@m.gmane.org; Thu, 11 Nov 2004 06:39:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CSDIi-0000mt-B4 for bug-gnu-emacs@gnu.org; Thu, 11 Nov 2004 06:39:40 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CSDIh-0000mg-RE for bug-gnu-emacs@gnu.org; Thu, 11 Nov 2004 06:39:39 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CSDIh-0000md-OV for bug-gnu-emacs@gnu.org; Thu, 11 Nov 2004 06:39:39 -0500 Original-Received: from [64.233.170.207] (helo=rproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CSD9l-00012h-Bk for bug-gnu-emacs@gnu.org; Thu, 11 Nov 2004 06:30:26 -0500 Original-Received: by rproxy.gmail.com with SMTP id a41so341669rng for ; Thu, 11 Nov 2004 03:30:24 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=JFy3wOXoBGsqch0oblZLKLKH4lpkaw8NpoTSP+HfW8jjPNQTKb9CpjR7VsjIOw8jc54uNPV/t5Fvhu/Vm1Z7n4fq6lamaCcuslddueQ0SfZ4AaLNDi8qcOq14FallRVElOp0D2efZcptLu776trYOKehBuda0PupUOjHV9uRLB8= Original-Received: by 10.38.92.37 with SMTP id p37mr185326rnb; Thu, 11 Nov 2004 03:30:24 -0800 (PST) Original-Received: by 10.38.24.16 with HTTP; Thu, 11 Nov 2004 03:30:24 -0800 (PST) Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:9663 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:9663 Emacs version: CVS 2004-11-10 Problematic codes: ;;++++++++++++++++++++++++++++++++++++++++ 1170 (defun emacs-wiki-link-at-point (&optional pos) "Return non-nil if a URL or Wiki link name is at point." (if (or (null pos) (and (char-after pos) (not (eq (char-syntax (char-after pos)) ? )))) (let ((case-fold-search nil) (here (or pos (point)))) (save-excursion (goto-char here) (skip-chars-backward "^'\"<>{}( [\t\n") 1180 (or (and (search-backward "[[" (line-beginning-position) t) (looking-at emacs-wiki-name-regexp) (<= here (match-end 0))) (and (goto-char here) (skip-chars-backward "^'\"<>{}( [\t\n") (looking-at emacs-wiki-url-or-name-regexp))))))) ;;++++++++++++++++++++++++++++++++++++++++ Byte-compile Messages: emacs-wiki.el:1170:44:Warning: attempt to inline `t' before it was defined emacs-wiki.el:1180:68:Warning: `t' called as a function When use emacs-wiki.el, everything is OK, but there is something wrong when I use emacs-wiki.elc.