From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master e971ce6: Make autoloads populate a new definition-prefixes table Date: Thu, 26 May 2016 22:52:03 +0300 Message-ID: <83twhk1tss.fsf@gnu.org> References: <20160526025822.15529.80475@vcs.savannah.gnu.org> <20160526025822.4D91A220153@vcs.savannah.gnu.org> <83y46w22gw.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1464292361 26524 80.91.229.3 (26 May 2016 19:52:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 26 May 2016 19:52:41 +0000 (UTC) Cc: rgm@gnu.org, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 26 21:52:40 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b61Kh-0001nB-T1 for ged-emacs-devel@m.gmane.org; Thu, 26 May 2016 21:52:40 +0200 Original-Received: from localhost ([::1]:40290 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b61Kh-0001wd-4d for ged-emacs-devel@m.gmane.org; Thu, 26 May 2016 15:52:39 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45593) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b61KA-0001vW-OL for emacs-devel@gnu.org; Thu, 26 May 2016 15:52:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b61K6-0003NQ-PS for emacs-devel@gnu.org; Thu, 26 May 2016 15:52:06 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b61K6-0003NH-Mo; Thu, 26 May 2016 15:52:02 -0400 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2646 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1b61K4-0006Jx-0I; Thu, 26 May 2016 15:52:00 -0400 In-reply-to: (message from Stefan Monnier on Thu, 26 May 2016 14:11:01 -0400) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:204060 Archived-At: > From: Stefan Monnier > Cc: Glenn Morris , emacs-devel@gnu.org > Date: Thu, 26 May 2016 14:11:01 -0400 > > > w32-fns.el:245:2:Warning: set-message-beep called with 1 argument, but accepts > > only 0 > > (All of these warnings are bogus, of course.) > > These are indeed bogus, but I can't imagine how they could be the result > of my commit. You are right. The reason is that on master 'declare-function' must specify the full arglist of the announced function, otherwise the byte-compiler emits this warning (I get them in quite a few files). Is that intentional? If so, we should fix all the 'declare-function' forms that don't already state the argument lists.