From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lars Ingebrigtsen Newsgroups: gmane.emacs.bugs Subject: bug#8794: (c) fix the cons<->int conversions Date: Thu, 25 Feb 2016 17:19:02 +1030 Message-ID: <87r3g1uvxd.fsf@gnus.org> References: <4DE89EB8.9020202@cs.ucla.edu> <4DE9363B.7090504@cs.ucla.edu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1456383020 15229 80.91.229.3 (25 Feb 2016 06:50:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Feb 2016 06:50:20 +0000 (UTC) Cc: Stefan Monnier , 8794@debbugs.gnu.org To: Paul Eggert Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Feb 25 07:50:10 2016 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1aYpkY-0005yA-6f for geb-bug-gnu-emacs@m.gmane.org; Thu, 25 Feb 2016 07:50:10 +0100 Original-Received: from localhost ([::1]:40486 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYpkX-0000mI-BG for geb-bug-gnu-emacs@m.gmane.org; Thu, 25 Feb 2016 01:50:09 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36598) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYpkU-0000ka-7g for bug-gnu-emacs@gnu.org; Thu, 25 Feb 2016 01:50:06 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYpkQ-0000EH-7P for bug-gnu-emacs@gnu.org; Thu, 25 Feb 2016 01:50:06 -0500 Original-Received: from debbugs.gnu.org ([208.118.235.43]:47533) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYpkQ-0000ED-4H for bug-gnu-emacs@gnu.org; Thu, 25 Feb 2016 01:50:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aYpkP-000331-Uz for bug-gnu-emacs@gnu.org; Thu, 25 Feb 2016 01:50:01 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 25 Feb 2016 06:50:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 8794 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 8794-submit@debbugs.gnu.org id=B8794.145638297411641 (code B ref 8794); Thu, 25 Feb 2016 06:50:01 +0000 Original-Received: (at 8794) by debbugs.gnu.org; 25 Feb 2016 06:49:34 +0000 Original-Received: from localhost ([127.0.0.1]:44651 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYpjy-00031h-D3 for submit@debbugs.gnu.org; Thu, 25 Feb 2016 01:49:34 -0500 Original-Received: from hermes.netfonds.no ([80.91.224.195]:54320) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYpjx-00031a-61 for 8794@debbugs.gnu.org; Thu, 25 Feb 2016 01:49:33 -0500 Original-Received: from [175.103.25.178] (helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aYpjX-0005Ji-Do; Thu, 25 Feb 2016 07:49:08 +0100 In-Reply-To: <4DE9363B.7090504@cs.ucla.edu> (Paul Eggert's message of "Fri, 03 Jun 2011 12:30:03 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) X-MailScanner-ID: 1aYpjX-0005Ji-Do MailScanner-NULL-Check: 1456987750.53822@V4Ud93cwoTsl3T+X00LqKw X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.118.235.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:113786 Archived-At: This was a quite long thread, and some parts were supposed to be applied later. I've looked at a couple of those parts, and they seem to be applied now: grep --color -nH -e cons_to_unsigned *.c charset.c:918: unsigned code = cons_to_unsigned (val, UINT_MAX); charset.c:931: unsigned code = cons_to_unsigned (val, UINT_MAX); charset.c:956: charset.invalid_code = cons_to_unsigned (val, UINT_MAX); charset.c:1853: code = cons_to_unsigned (code_point, UINT_MAX); data.c:2458:cons_to_unsigned (Lisp_Object c, uintmax_t max) xselect.c:1663: return cons_to_unsigned (obj, X_ULONG_MAX); So I'm closing this bug report now. If there were bits that were still left dangling, please reopen. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no