From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "T.V. Raman" Newsgroups: gmane.emacs.devel Subject: fix interactive spec for kill-region Date: Sun, 2 Sep 2012 07:33:55 -0700 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1346596440 30630 80.91.229.3 (2 Sep 2012 14:34:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 2 Sep 2012 14:34:00 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 02 16:34:02 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 1T8BFS-000486-5j for ged-emacs-devel@m.gmane.org; Sun, 02 Sep 2012 16:34:02 +0200 Original-Received: from localhost ([::1]:60688 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8BFP-0003u6-GO for ged-emacs-devel@m.gmane.org; Sun, 02 Sep 2012 10:33:59 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:48162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8BFM-0003to-Mx for emacs-devel@gnu.org; Sun, 02 Sep 2012 10:33:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T8BFL-0002FA-VI for emacs-devel@gnu.org; Sun, 02 Sep 2012 10:33:56 -0400 Original-Received: from mail-ie0-f169.google.com ([209.85.223.169]:55140) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8BFL-0002F6-QW for emacs-devel@gnu.org; Sun, 02 Sep 2012 10:33:55 -0400 Original-Received: by iec9 with SMTP id 9so3172544iec.0 for ; Sun, 02 Sep 2012 07:33:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=7tMZO/j6KUBPMKz6eT2QTJCjheCcYX0b4XPwc5BVAXI=; b=QdPhc8VKKNs+cQE1vb+v4vf1tnGGTRMfKBuYi0UjPSWUHKJq6rXuZNFjl6YVbJ6bAy na9EL+XAXLti73yTm48yHup/avAZqZLb1+bxsTBrr495rsTxUGSiffwHGpCR4oDYFMZk v8aDs2oA1ujdbnDZ00LRxLGNIkht509/4AuaNGJpqhrXt2gYrYfy3XwSP4y6utMjpytE 3242S1akYnrtCTjQCpx+3xtLHX+GhtN2q6z/3heA0M5pcUgzjzj0nvWaCHAkJROZawpe lEa4Jd/kbx68LCsJmvWJjzfaARHeORCqQqo0wgM5LxPJflEnFJD2dqWMmwzY1eIcLq7f DFNA== Original-Received: by 10.43.43.194 with SMTP id ud2mr13186438icb.13.1346596435182; Sun, 02 Sep 2012 07:33:55 -0700 (PDT) Original-Received: by 10.42.158.72 with HTTP; Sun, 2 Sep 2012 07:33:55 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.223.169 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:152951 Archived-At: Saw an unexplained bytecomp warning in the emacspeak build and traced it down the following: The definition of kill-region appears not to match its interactive spec --- the optional third arg does not appear in the interactive spec. See (defun kill-region (beg end &optional yank-handler) vs (interactive (list (point) (mark))) -- Best Regards, --raman