From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66871 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel,gmane.emacs.gnus.general Subject: Re: Compiler warnings in nnir.el Date: Thu, 24 Apr 2008 22:27:53 -0400 Message-ID: References: <87y77fiszu.fsf@ID-24456.user.uni-berlin.de> <87lk3fvw4l.fsf@ID-24456.user.uni-berlin.de> <873apmapq9.fsf_-_@ID-24456.user.uni-berlin.de> <87k5isa5vc.fsf@ID-24456.user.uni-berlin.de> <87hcdtep8k.fsf@ID-24456.user.uni-berlin.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1209090490 21025 80.91.229.12 (25 Apr 2008 02:28:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Apr 2008 02:28:10 +0000 (UTC) Cc: ding@gnus.org, emacs-devel@gnu.org To: Christoph Conrad Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 25 04:28:46 2008 connect(): Connection refused 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 1JpDg1-0000nV-Tr for ged-emacs-devel@m.gmane.org; Fri, 25 Apr 2008 04:28:42 +0200 Original-Received: from localhost ([127.0.0.1]:47987 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JpDfL-0007E0-R0 for ged-emacs-devel@m.gmane.org; Thu, 24 Apr 2008 22:27:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JpDfI-0007Dv-ED for emacs-devel@gnu.org; Thu, 24 Apr 2008 22:27:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JpDfF-0007Dj-Um for emacs-devel@gnu.org; Thu, 24 Apr 2008 22:27:55 -0400 Original-Received: from [199.232.76.173] (port=39606 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JpDfF-0007Dg-NY for emacs-devel@gnu.org; Thu, 24 Apr 2008 22:27:53 -0400 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182] helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JpDfF-00072h-Ja for emacs-devel@gnu.org; Thu, 24 Apr 2008 22:27:53 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApsEAAbfEEhMCpew/2dsb2JhbACBUqtT X-IronPort-AV: E=Sophos;i="4.25,706,1199682000"; d="scan'208";a="19058170" Original-Received: from smtp.pppoe.ca (HELO smtp.teksavvy.com) ([65.39.196.238]) by ironport2-out.teksavvy.com with ESMTP; 24 Apr 2008 22:27:53 -0400 Original-Received: from pastel.home ([76.10.151.176]) by smtp.teksavvy.com (Internet Mail Server v1.0) with ESMTP id FGA02253; Thu, 24 Apr 2008 22:27:53 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 17B0C8064; Thu, 24 Apr 2008 22:27:53 -0400 (EDT) In-Reply-To: (Reiner Steib's message of "Thu, 24 Apr 2008 20:17:30 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:95930 gmane.emacs.gnus.general:66871 Archived-At: > (defmacro nnir-add-result-dummy (dirnam artno score prefix server artlist) > "Ask `nnir-compose-result' to construct a result vector, > and if it is non-nil, add it to artlist." > `(let ((result (nnir-compose-result-dummy dirnam artno score prefix server))) > (when (not (null result)) > (push result artlist)))) This looks very strange. I guess there are missing commas in front of dirnam, artno, score, prefix, and server in the call to nnir-compose-result-dummy. Stefan