From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: suspect error in regex.c Date: Sun, 08 Sep 2002 08:54:50 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1031489952 28606 127.0.0.1 (8 Sep 2002 12:59:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 8 Sep 2002 12:59:12 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from hermes.netfonds.no ([80.91.224.195]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17o1eg-0007RG-00 for ; Sun, 08 Sep 2002 14:59:10 +0200 Original-Received: from mail-relay.eunet.no (mail-relay.eunet.no [193.71.71.242]) by hermes.netfonds.no (8.12.1/8.12.1) with ESMTP id g88CxE9e001692 for ; Sun, 8 Sep 2002 14:59:14 +0200 (CEST) Original-Received: from quimby.gnus.org (quimby.gnus.org [80.91.224.244]) by mail-relay.eunet.no (8.12.2/8.12.2/GN) with ESMTP id g88CxERb088125 for ; Sun, 8 Sep 2002 14:59:14 +0200 (CEST) (envelope-from emacs-devel-admin@gnu.org) Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17o2E8-0001gB-00 for ; Sun, 08 Sep 2002 15:35:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17o1eh-00089J-00; Sun, 08 Sep 2002 08:59:11 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17o1aX-0007Ke-00 for emacs-devel@gnu.org; Sun, 08 Sep 2002 08:54:53 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17o1aV-0007KS-00 for emacs-devel@gnu.org; Sun, 08 Sep 2002 08:54:52 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17o1aV-0007KM-00 for emacs-devel@gnu.org; Sun, 08 Sep 2002 08:54:51 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 17o1aU-00066J-00; Sun, 08 Sep 2002 08:54:50 -0400 Original-To: pot@gnu.org In-reply-to: (message from Francesco Potorti` on Thu, 05 Sep 2002 17:32:45 +0200) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:7713 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:7713 Does this patch work right? *** regex.c.~1.179.~ Thu Sep 5 23:00:55 2002 --- regex.c Sat Sep 7 15:15:41 2002 *************** *** 1834,1840 **** /* But patterns can have more than `MAX_REGNUM' registers. We just ignore the excess. */ ! typedef unsigned regnum_t; /* Macros for the compile stack. */ --- 1834,1840 ---- /* But patterns can have more than `MAX_REGNUM' registers. We just ignore the excess. */ ! typedef int regnum_t; /* Macros for the compile stack. */