From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: suppressable byte compilation warnings and cconv.el Date: Thu, 14 Apr 2016 08:04:33 -0400 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1460635498 26713 80.91.229.3 (14 Apr 2016 12:04:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 14 Apr 2016 12:04:58 +0000 (UTC) Cc: emacs-devel@gnu.org To: Paul Pogonyshev Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 14 14:04:48 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 1aqg0p-00065K-VS for ged-emacs-devel@m.gmane.org; Thu, 14 Apr 2016 14:04:44 +0200 Original-Received: from localhost ([::1]:38285 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqg0o-0007AT-MF for ged-emacs-devel@m.gmane.org; Thu, 14 Apr 2016 08:04:42 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqg0k-00074b-B3 for emacs-devel@gnu.org; Thu, 14 Apr 2016 08:04:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqg0g-0004gy-Gt for emacs-devel@gnu.org; Thu, 14 Apr 2016 08:04:38 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:15057) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqg0g-0004gM-Cx for emacs-devel@gnu.org; Thu, 14 Apr 2016 08:04:34 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0DNEQA731xV/ySNSC1cgxCEAoVVwxECgT08EAEBAQEBAQGBCkEFg10BAQMBeQULCw0nEhQYMYg3CM8jAQEIAiCLOoUFB4QtBaV1jw8jhBQigngBAQE X-IPAS-Result: A0DNEQA731xV/ySNSC1cgxCEAoVVwxECgT08EAEBAQEBAQGBCkEFg10BAQMBeQULCw0nEhQYMYg3CM8jAQEIAiCLOoUFB4QtBaV1jw8jhBQigngBAQE X-IronPort-AV: E=Sophos;i="5.13,465,1427774400"; d="scan'208";a="207258454" Original-Received: from unknown (HELO pastel.home) ([45.72.141.36]) by ironport2-out.teksavvy.com with ESMTP; 14 Apr 2016 08:04:33 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 303CA642A9; Thu, 14 Apr 2016 08:04:33 -0400 (EDT) In-Reply-To: (Paul Pogonyshev's message of "Thu, 14 Apr 2016 10:44:52 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 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:202902 Archived-At: > To clarify why I want it. I have some procedurally generated > functions, which I byte-compile after generation. For those cases where you don't actually know whether it's used or not (most typically this happens in macros), you can instead use the `ignore' function: (defun foo (arg1 arg2) (ignore arg1 arg2) ...) -- Stefan