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: fix interactive spec for kill-region Date: Fri, 07 Sep 2012 15:37:56 -0400 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1347046686 32354 80.91.229.3 (7 Sep 2012 19:38:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 7 Sep 2012 19:38:06 +0000 (UTC) Cc: Andreas Schwab , emacs-devel@gnu.org To: "T.V. Raman" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 07 21:38:07 2012 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 1TA4NS-0001v3-Me for ged-emacs-devel@m.gmane.org; Fri, 07 Sep 2012 21:38:06 +0200 Original-Received: from localhost ([::1]:49572 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TA4NP-000239-C9 for ged-emacs-devel@m.gmane.org; Fri, 07 Sep 2012 15:38:03 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:34919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TA4NM-000232-VJ for emacs-devel@gnu.org; Fri, 07 Sep 2012 15:38:01 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TA4NM-0007Xb-4Y for emacs-devel@gnu.org; Fri, 07 Sep 2012 15:38:00 -0400 Original-Received: from pruche.dit.umontreal.ca ([132.204.246.22]:55745) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TA4NM-0007XQ-0d for emacs-devel@gnu.org; Fri, 07 Sep 2012 15:38:00 -0400 Original-Received: from faina.iro.umontreal.ca (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id q87JbuOh003840; Fri, 7 Sep 2012 15:37:56 -0400 Original-Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id 9E1E3B4085; Fri, 7 Sep 2012 15:37:56 -0400 (EDT) In-Reply-To: (T. V. Raman's message of "Fri, 7 Sep 2012 09:00:53 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 132.204.246.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:153167 Archived-At: > emacspeak-advice.el:1607:52:Warning: ad-Orig-kill-region called with 3 > arguments, but accepts only 2 The warning is in error here: while we want to discourage the use of the 3rd arg (hence this warning), its use is correct here, since the advice just takes the 3 args and passes them further untouched. I'm not sure how best to explain this to the byte-compiler, tho. Stefan