From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: region_limit fix Date: Fri, 29 Jun 2012 06:29:03 +0400 Message-ID: <4FED12EF.1070803@yandex.ru> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1340937039 30385 80.91.229.3 (29 Jun 2012 02:30:39 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 29 Jun 2012 02:30:39 +0000 (UTC) Cc: Emacs development discussions To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 29 04:30:38 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 1SkQyj-0000tE-Cu for ged-emacs-devel@m.gmane.org; Fri, 29 Jun 2012 04:30:37 +0200 Original-Received: from localhost ([::1]:33007 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SkQyj-0002ag-3A for ged-emacs-devel@m.gmane.org; Thu, 28 Jun 2012 22:30:37 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:56839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SkQyg-0002ab-LT for emacs-devel@gnu.org; Thu, 28 Jun 2012 22:30:35 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SkQye-00069b-UV for emacs-devel@gnu.org; Thu, 28 Jun 2012 22:30:34 -0400 Original-Received: from forward7.mail.yandex.net ([77.88.61.37]:57706) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SkQye-00069V-Fd for emacs-devel@gnu.org; Thu, 28 Jun 2012 22:30:32 -0400 Original-Received: from smtp9.mail.yandex.net (smtp9.mail.yandex.net [77.88.61.35]) by forward7.mail.yandex.net (Yandex) with ESMTP id D6B101C11F7; Fri, 29 Jun 2012 06:29:02 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1340936942; bh=LOmfad7+4RQLn0y30J/jjePVPQGPmT+ptYnLMpRAIBg=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:Content-Type: Content-Transfer-Encoding; b=w3TxJLlRFRxNAvSokmit5n3XNAXfPWQK6KxUd6MZkcm1C0q7OpQPAZxMDG8gheG/I /bdqxzbNU+YI6U3BGZpXGhAZGLVID3ioz0lTSJbXRhDExkHrMJgS3/MeN90aTU9IMI TWM5AEUJ/Yen6vAu2lzIWyU9g+831h1lkL3ULfx4= Original-Received: from smtp9.mail.yandex.net (localhost [127.0.0.1]) by smtp9.mail.yandex.net (Yandex) with ESMTP id B56FA15201CC; Fri, 29 Jun 2012 06:29:02 +0400 (MSK) Original-Received: from 213-148-21-55.gelicon.ru (213-148-21-55.gelicon.ru [213.148.21.55]) by smtp9.mail.yandex.net (nwsmtp/Yandex) with ESMTP id T260GiLd-T264FPp3; Fri, 29 Jun 2012 06:29:02 +0400 X-Yandex-Rcpt-Suid: monnier@IRO.UMontreal.CA X-Yandex-Rcpt-Suid: emacs-devel@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1340936942; bh=LOmfad7+4RQLn0y30J/jjePVPQGPmT+ptYnLMpRAIBg=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: Content-Type:Content-Transfer-Encoding; b=TL82AWAittVPnyp+M1yvueiv/8eMXQzgyq4zckgJJke0d0VRZWpBAemWJrLKtssaX ZQF+Lf8lzGzBw174rV3x/MhY7DYF6m9ciF+E5Mty4MI8g633rqGMwVAvwq5syDQ53O OJo1aZx7cceku+vh892L9f+w7cXEl5k+gWW2oK/Y= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 77.88.61.37 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:151276 Archived-At: Introduced in 108793, found when compiling with --enable-check-lisp-object-type: editfns.c: In function 'region_limit': editfns.c:290:14: error: type mismatch in conditional expression In: return make_number (mark < BEGV ? BEGV : mark > ZV ? ZV : m); Lisp_Object 'm' is compared with ptrdiff_t. Fixed in 108796. Dmitry